2

我有一个看起来像这样的 CSS:

CSS

table {   
 width: 100%;
 font-family: calibri;
 word-wrap:break-word;
 margin-left: 0; 
 font-size: 1.1em;
 border-collapse: separate;
 border-spacing: 1px;      
}

td {  
 text-transform: none;
 font-weight: bold;
 line-height: 115%;
 word-wrap:break-word;  
 vertical-align: middle; 
 padding: 2px 10px 0 3px ; 
 border-radius: 2px;
 border: 1px solid #6A797F;        
}   

tr:nth-child(odd){
 background-color: #a9c6c9; 
}

tr:nth-child(even){
 background-color: #d4e3e5;
}

如何在 CSS 文件的某处添加单独的<table>, <td>& <tr>,我可以在其中更改样式以适应该特定页面的设计目的。我尝试了这个解决方案,但没有奏效:

.members_col1 tr td{
  text-transform: none;
  line-height: 115%;
  word-wrap: break-word;  
  vertical-align: left; 
}

.member_col1<div>包含<table>我想添加一组新样式的。

4

2 回答 2

1

使用表中的属性 id 或类,然后将它们覆盖为 css 中的选择器,例如:

<table id="another-table">...

css
#another-table{
....
}

或者

<table class="tables">...
<table class="tables">...

css
.tables{
...
}
于 2012-11-08T20:29:09.803 回答
0

在你的 html 中使用它:

<table class="newTable">
...
</table>

并使用这个 CSS:

.newTable tr td{
   text-transform: none !important;
   line-height: 115% !important;
   word-wrap:break-word !important;  
   vertical-align: left !important; 
   }
于 2012-11-08T20:41:08.700 回答