Hi Linda,
You may be able to use an adjacent sibling selector to do it,
something like this:
.myclass + br {
display: none;
}
I don't think that will work in IE 6, but it seems to be supported in
most other browsers.
BR in general is a difficult tag to style, see for example:
http://stacko
Is there a way to select all tags that follow a paragraph with a given
class? i.e. This is a paragraph
There may be other in the HTML so I cannot use this:
br {display:none;}
and I cannot delete all tags.
There are about 700 pages and I do not want to go through each of them to make
sure