Heim >Web-Frontend >HTML-Tutorial >table css 奇偶样式_html/css_WEB-ITnose

table css 奇偶样式_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:09:371192Durchsuche

纯CSS   奇偶样式
谢绝JS脚本




...忽略


回复讨论(解决方案)

CSS3可以?

间隔tr写class
或者
打td th的注意(不符合标准)

<!DOCTYPE HTML><html>	<head>		<meta charset="gb2312" />		<title></title>			<style>			td {				background:#eee;			}			th {				font-weight:normal;				background:#ddd;			}		</style>			</head>	<body>		<table>			<tr>				<td>1-1</td>				<td>1-1</td>				<td>1-1</td>			</tr>			<tr>				<th>1-1</th>				<th>1-1</th>				<th>1-1</th>			</tr>			<tr>				<td>1-1</td>				<td>1-1</td>				<td>1-1</td>			</tr>		</table>	</body></html>

https://developer.mozilla.org/en/CSS/:nth-child
IE9+

http://www.cnblogs.com/xihulangzi/articles/939591.html

定义2个class样式
奇数行偶数行用不同的。

这个又把问题复杂化了。。。。

原来搞不了啊  还是用js脚本搞 哈  谢谢各位

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn