当前位置: 编程技术>WEB前端
XHTML下用dl,dt,dd标签实现翻页的效果代码
来源: 互联网 发布时间:2014-09-06
本文导语: 今天在标准之类的blog(http://www.aa25.cn)看到"纯CSS代码实现翻页" 的文章 dl { position:absolute; width:389px; height:154px; border:10px solid #eee; } dd { margin:0; width:389px; height:154px; overflow:hidden; } im...
今天在标准之类的blog(http://www.aa25.cn)看到"纯CSS代码实现翻页"
的文章
也许很多人对HTML的UL,OL,LI标签可能都比较熟习,但是对DL,DT,DD可能就不怎么了解了,那么到W3.ORG去看看吧,
http://www.w3.org/TR/2002/WD-xhtml2-20020805/mod-list.html
,http://www.w3.org/TR/2005/WD-xhtml2-20050527/mod-list.html
标记定义了一个定义列表,定义列表中的条目是通过使用 标记(“definition title”,定义标题)和 标记(“definition description”,定义描述)创建的。 给出了术语名, 标记给出了术语的定义。
也就是说 用来创建列表中的上层项目, 用来创建列表中最下层项目, 和 都必须放在 < /dl>标志对之间。
的文章
dl {
position:absolute;
width:389px;
height:154px;
border:10px solid #eee;
}
dd {
margin:0;
width:389px;
height:154px;
overflow:hidden;
}
img {
border:1px solid black
}
dt {
position:absolute;
right:3px;
top:50px;
}
a {
display:block;
margin:1px;
width:20px;
height:20px;
text-align:center;
font:700 12px/20px "宋体",sans-serif;
color:#fff;
text-decoration:none;
background:#666;
border:1px solid #fff;
filter:alpha(opacity=40);
opacity:.4;
}
a:hover {
background:#000
}
123
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
也许很多人对HTML的UL,OL,LI标签可能都比较熟习,但是对DL,DT,DD可能就不怎么了解了,那么到W3.ORG去看看吧,
http://www.w3.org/TR/2002/WD-xhtml2-20020805/mod-list.html
,http://www.w3.org/TR/2005/WD-xhtml2-20050527/mod-list.html
标记定义了一个定义列表,定义列表中的条目是通过使用 标记(“definition title”,定义标题)和 标记(“definition description”,定义描述)创建的。 给出了术语名, 标记给出了术语的定义。
也就是说 用来创建列表中的上层项目, 用来创建列表中最下层项目, 和 都必须放在 < /dl>标志对之间。