Alan Kellogg 1 Posted December 22, 2014 Report Share Posted December 22, 2014 (edited) Goal: To set text indent in the first paragraph after a heading to a value of 0px; with subsequent paragraphs to be set with a text indent of N.px. Query: Can this be done? Edited December 22, 2014 by Alan Kellogg Quote Link to post Share on other sites
Ingolme 1,027 Posted December 22, 2014 Report Share Posted December 22, 2014 You can use the direct sibling selector. In this example any <p> element that immediately follows an <h3> would be selected. p { text-indent: 2em;}h3 + p { text-indent: 0;} Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.