Jump to content
  • 0

Рамка thead, tbody


Djo
 Share

Question

Здравствуйте.

Хочу оградить шапку таблицы двуцетной линией.

Сайт логин/пароль: test

table.counters-history {
background-color : #EFEFEF;
}
table.counters-history thead {
border-bottom : solid 1px #CCC;
}

table.counters-history tbody {
border-top : solid 1px #FFF;
}

Почему рамку не видно?

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Жаль что через tbody\thead нельзя..

Пришлось заморачиваться:

table.counters-history {
border-collapse: separate;
border-spacing : 0 0;
background-color : #EFEFEF;
}

table.counters-history thead th {
border-bottom : solid 1px #CCC;
}

table.counters-history tbody tr:first-child td {
border-top : solid 1px #FFF;
}
table.counters-history td, table.counters-history th {
padding : 1px 20px;
}

Link to comment
Share on other sites

  • 0

В FF:

0_35cb6_da43dbfc_L.jpg

В IE7:

0_35cb5_98bdd25d_L.jpg

в седьмом работает, но всеже смотриться не правильно: он оставил между ячейками поля примерно 2px! - поэтому между рамками отступ и линия прерывается. К тому же рамка залазиет на тени ;)

Есть предложения как это можно исправить, а то мне на ум только тяжелые методы приходят :)

вот весь css для таблицы (полностью):

table.counters-history {
margin: 0;
border-collapse: separate;
border-spacing : 0 0;
background-color : #EFEFEF;

background-image:url(../images/module_content_right.gif);
background-position:right;
background-repeat:repeat-y;
padding: 0 12px 0 4px;
}

table.counters-history thead th {
border-bottom : solid 1px #CCC;
padding: 2px;
}

table.counters-history tbody tr:first-child td {
border-top : solid 1px #FFF;
}

table.counters-history caption {
margin : 0; padding : 5px 12px 5px;
font-size : 120%; font-weight : bold;
background-color : #444;
color : #FFF;

background-image:url(../images/module_header_right.gif);
background-position:right;
background-repeat:repeat-y;
}

table.counters-history td, table.counters-history th {
text-align : center;
padding : 1px 20px;
}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy