|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
提高易用性。使用CSS可以结构化HTML,例如:标签只用来控制段落,heading标签只用来控制标题,table标签只用来表现格式化的数据等等。
用CSS做滑动效果的图片画廊
代码以下:以下是援用片断:
<style>
#galleryh{
padding:0;
margin:0auto5emauto;
list-style-type:none;
overflow:hidden;
width:495px;
height:240px;
border:1pxsolid#888;
background:#fffurl(http://soft.yesky.com/imagelist/06/24/o9642o826u4n.gif);
}
#galleryhli{
float:left;
}
#galleryhlia{
display:block;
height:240px;
width:28px;
float:left;
text-decoration:none;
border-right:1pxsolid#fff;
cursor:default;
}
#galleryhliaimg{
width:28px;
height:240px;
border:0;
}
#galleryhlia:hover{
background:#eee;
width:320px;
}
#galleryhlia:hoverimg{
width:320px;
}
</style>
以下是援用片断:
<ulid="galleryh">
<li><ahref="#nogo">
</a></li></ul>
DIV本身就是容器性质的,你不但可以内嵌table还可以内嵌文本和其它的HTML代码CSS是CascadingstyleSheets的简称,中文译作“层叠样式表单”。 |
|