header{width: 90%; },如何设置css使网页头部整体居中?
A. margin:0;
B. margin:auto;
C. padding:0;
D. padding:auto;
查看答案
sidebar的内容
maincontent的内容
如何设置css使类名为one和two的两个div,在一行中一个靠左,一个靠右显示?
A. .one,.two{ margin:auto;}
B. .one,.two{ float:left;}
C. .one{float:right;}.two{float:right;}
D. .one{float:left;}.two{float:right;}
下面哪个css用于取消超链接下划线?
A. text-decoration:none;
B. list-style:none;
C. text-align:center;
D. list-style:1;
下面哪个css可以使文本水平垂直居中?
A. height:40px;line-height:45px;text-align:center;
B. height:45px;line-height:40px;text-align:center;
C. height:45px;line-height:45px;text-align:auto;
D. height:45px;line-height:45px;text-align:center;
A. a,span{float:left;}
B. a,span{float:right;}
C. a{float:left;}span{float:right;}
D. a{float:right;}span{float:left;}