I have a:
<h2>foo<br/>bar</h2>
and I'd like to hide "bar", but I can't figure out a proper selector.
Is it even possible?
|
|
I have a:
and I'd like to hide "bar", but I can't figure out a proper selector. Is it even possible? |
||
|
|
|
|
There isn't a selector for it as far as I know. A possible (hacky) solution would be to set a height for the H2 element and add overflow: hidden; |
||
|
|
|
|
Try h2:not(:first-line) It's doubtful that this works though, first-line is rather buggy across browsers. (see http://docs.jquery.com/Selectors/not#selector and http://www.w3schools.com/Css/pr_pseudo_first-line.asp ) |
||||||
|
|
|
I think you should wrap B in |
||
|
|
|
|
First: the correct way is to add another tag, if you can, as the others suggested.
Now you don't have any naked text nodes, so you can easily select the second line:
|
||||
|
|
|
An all css solution:
|
||
|
|