underline everey table
-
I like to have a break line after every row in a table.
I tried to do that in CSS, but until now it didn’t work.This the information for what i like to see.
Under every post what i post there is a underline. (The dots. if you where looking on my blog.) Now I got a album and there i have table’s. For every row i like those dots under it. I have tried to use hr command, but those doesn’t show up.
So thats how i come top css.
So the dots under a post i like also to see at a row on every table. Does table is in the album page. -
This is the code i use to get the underline on every page:
.primary .item2 .itemtext {
font:1.2em Trebuchet MS;
text-align:left;
color:#333;
padding-bottom:1px;
background:url(‘http://dennispater.com/wp-content/themes/pub/unsleepable/images/break.gif’) bottom left repeat-x;
line-height:150% !important;
margin-bottom:2px;
}Now i need the underline only for the table.
-
The last code was also resolving I only needed to put tr into it:
.primary .item2 .itemtext tr{
font:1.2em Trebuchet MS;
text-align:left;
color:#333;
padding-bottom:1px;
background:url(‘http://dennispater.com/wp-content/themes/pub/unsleepable/images/break.gif’) bottom left repeat-x;
line-height:150% !important;
margin-bottom:2px;
}
This works perfect.
- The topic ‘underline everey table’ is closed to new replies.