tommyd456
tommyd456

Reputation: 10683

Inline CSS using Jade templating system

Is there a way to write inline css using Jade for Node?

My HTML is:

<div class="column" style="text-align:center;"></div>

but I can't see any reference to this in the guides.

Upvotes: 9

Views: 18861

Answers (1)

Laurent Perrin
Laurent Perrin

Reputation: 14881

You can write anything you want in HTML attributes:

.column(style="align:center;")

Upvotes: 17

Related Questions