Here's my fiddle:
In this screenshot, the green lines represent where I'm trying to apply dotted lines.

I am able to get the left-right borders to appear as dotted lines, but not the bottom borders.
How can I resolve this?
|
Here's my fiddle: In this screenshot, the green lines represent where I'm trying to apply dotted lines.
I am able to get the left-right borders to appear as dotted lines, but not the bottom borders. How can I resolve this? |
|||||
|
|
The issue you're seeing is due to the rules of conflict resolution when it comes to border collapse. Solid takes precedence over dotted: http://lachy.id.au/dev/css/tests/bordercollapse/bordercollapse.html I believe you will need to make the conflicting borders dotted as well. So if you went a cell's left border to be dotted, you'll need to make the right border of the cell to its left also dotted (or anything of lower precedence, but dotted make the most sense). |
|||||||||
|
|
Here is a solution:
Now here is the corresponding fiddle: http://jsfiddle.net/Fvds5/3/, where every cell in the fourth column has now left and bottom dotted 1px black borders, except the last one that has no dotted bottom border. |
|||||||||||
|
|
Ok, this answer is partially devised from the information provided in the previous answers, but simply adding First, the rendering mechanism between various browsers is not the same. This fiddle shows two lines over the total height of 4 rows in IE, FF and Opera. But Chrome and SafariWin shorten the left line to only one row. To compensate for this, I added an extra dummy column, which proved also very usefull to eliminate most of the classes in the HTML. Secondly, the base css style now only gives a left- and bottom-border to the cells. As a result, the last cells got a Here is the revised fiddle, tested with IE7, IE8, IE9, FF, Opera, SafariWin and Chrome. Edit: If you réally don't want the dummy column, I've managed it to get this far, but that solution does not work in Chrome or SafariWin. (Something strange is going on. Maybe someone else can explain.) |
||||
|
|
|
Here is my fiddle: http://jsfiddle.net/gFA4p/109/
All I did was add
to the bottom of the style sheet, as well as add the The problem you have is the bottom cell's solid border is overlapping the top cell's dotted border. This alleviates that. |
|||
|
|
This is your problem. I would think you should assign separate classes to table cells instead of general assignments a la tr>td Maybe there's a way with less hassle though, not sure. But basically that line overrides your dotted style. |
|||
|
|
|
looks like it's overwriting or ignoring your dotted borders in td. because you set the borders to solid here:
edit: someone beat my by ~20 seconds here... |
|||
|
|
|
This works if I add inline styles to the HTML and get rid of the class names. http://jsfiddle.net/jasongennaro/xWSKD/1/ EDIT This also works if I add the styles to the css with an
http://jsfiddle.net/jasongennaro/xWSKD/2/ Note The fiddles show the dotted line as Also, see the comment below re implications of using |
|||||||||||
|
|
With jQuery, you can:
You can find all rows in that column by doing something like:
Note im saying something like because im not very good with jQuery and don't have the right syntax/grasp of how selectors are used. But I've seen examples where similar things are done. You can find tonnes of examples of this site, or consult the original documentation (which is kinda bad, imho). Ok, I did it:
|
||||
|
|
|
Here we go http://jsfiddle.net/gFA4p/86/ |
|||
|
|