Hi, wondering if anyone knows if it is possible to target line-break tag with css. Basically all I want to do is have a 1px dashed line every-time there is a line-break. I am customising a site with my own css and cannot change the set html, otherwise I would use some other way. I don't think it is possible but maybe there is a way someone knows about. - Thanks!
|
3
|
|
|
|
|
|
If you like to visually separate two sentences, then you probably want to use the horizontal ruler which is intended for this goal. Since you cannot change the markup, I'm afraid using only CSS you cannot achieve this. It seems, it has been already discussed on other forums. Extract from Re: Setting the height of a BR element using CSS:
I also found a clarification in the CSS 1 specification (no higher level spec mentions it):
Grant Wagner's tests show that there is no way to style Update pelms made some further investigations, and pointed out that IE8 (on Win7) and Chrome 2/Safari 4b allows you to style |
||||||
|
|
|
For the benefit of any future visitors who may have missed my comments:
does not work. It has been tested in IE 6, 7 & 8, Firefox 2, 3 & 3.5B4, Safari 3 & 4 for Windows, Opera 9.6 & 10 (alpha) and Google Chrome (version 2) and it didn't work in any of them. If at some point in the future someone finds a browser that does support a border on a Also note that I tried a number of other things:
Of those, the following does works in Opera 9.6 and 10 (alpha) (thanks porneL!):
Not very useful when it is only supported in one browser, but I always find it interesting to see how different browsers implement the specification. |
||||
|
|
|
I know you can't edit the HTML, but if you can modify the CSS, can you add javascript? if so, you can include jquery, then you could do
|
||
|
|
|
|
renders as below in IE8... not a lot of use in just one browser though.
(N.B. I'm using IE 8.0.7100 (on Win7 RC) if that makes any difference) Also,
or,
gives a dashed line in Chrome 2 / Safari 4b but loses the line break which (unless anyone can come up with a way to reintroduce that) makes it less than useless. e.g. |
||||||
|
|
|
My own tests conclusively show that But if you can add style then you can probably also add a scrip tag to the header of the page?
Link to an external
So in short, it's not optimal, but here is my solution. |
||||
|
|
|
BR is an inline element, not a block element. So, you need:
Otherwise, browsers that are a little pickier about such things will refuse to apply borders to your BR elements, since inline elements don't have borders, padding, or margins. |
||||||||
|
|
|
This will work, but only in IE. I tested it in IE8.
|
||
|
|
|
|
Why not just use the HR tag? It's made exactly for what you want. Kinda like trying to make a fork for eating soup when there's a spoon right in front of you on the table. |
||
|
|
