- 浏览: 2494 次
- 性别:
- 来自: 北京
最近访客 更多访客>>
文章列表
没有找到怎么用css在<a>里面inline地定义hover,只好用js。
<a href="javascript:void(0)" style="color:blue;text-decoration: none;" onmouseover="this.style.textDecoration = 'underline'" onmouseout="this.style.textDecoration = 'none'">link text</a>
另 <a href= ...
- 2009-03-24 09:04
- 浏览 921
- 评论(0)
IE: body的text-align设为center
FF: body内第一层div的margin-left和margin-right设为auto
<body style="text-align:center;">
<div style="margin:0px;auto;">
</div>
</body>
- 2009-03-23 21:10
- 浏览 1210
- 评论(1)