I have a site which has editable content via a WYSIWYG inline editor, and users who are very unlikely to understand the need to put containing DIV around similar blocks of code for formatting, resulting in html similar to:
<div class="borderBlock">Content...</div>
<div class="borderBlock">Content...</div>
<div>Other content</div>
<div class="borderBlock">Content...</div>
with current CSS along the lines of:
.borderBlock {
margin: 8px 0;
border: 1px solid;
border-radius: 4px;
}
This gives each div it's own separate border - not quite what is wanted, ideally the first two div's would share a border and background colour!
I know that I can use css such as:
:not(.borderBlock) + .borderBlock { }
to select the first block of class borderBlock - applying formatting for the start of a block, and similarly:
.borderBlock + :not(.borderBlock)
would select the first none borderBlock element... but I can't find a way to select the last borderBlock element in a block that isn't specifically surrounded by another div - in the above html using :last-child or :last-child-of-type would both select only the fourth div, and not style the second div as the end of a borderBlock. Similarly :first-child(-of-kind) would not style the second bordered block.
Is there a CSS solution to this that doesn't use JavaScript, and doesn't involve putting a containing div around each required bordered block? Something equivalent to a CSS look-ahead regular expression rather than the standard CSS look-behind style.
border-right: noneon the left div, andborder-left:noneon the right div, or however you want it set up – Andy Oct 12 '12 at 8:15