lost9123193
lost9123193

Reputation: 11040

Put words inside span tag using emmet

I want to do add a description to a tag (eg. span) using the Emmet shortcuts to get something like this:

<span> Description </span>

Can this be done?

Upvotes: 2

Views: 477

Answers (1)

Chris
Chris

Reputation: 137071

You should be able to use braces for text content, e.g.

span{ Description }

Upvotes: 5

Related Questions