單項選擇題有5個超鏈接a標簽,如何設置它們的寬與高,并且每個a標簽后面自動換行?()
A.display:inline-block;
B.display:block;
C.display:inline;
D.display:block-inline;
您可能感興趣的試卷
你可能感興趣的試題
1.單項選擇題css中,如何設置背景顏色為紅色?()
A.background-color:red;
B.background-color:pink;
C.background-color:#000;
D.background-color:yellow;
2.單項選擇題css中,如何設置水平居中和垂直居中?()
A.設置width和height,
B.設置text-align:center
C.設置行高line-height與height的值一樣
D.以上都對
3.單項選擇題如何設置文本寬與高?()
A.width設置高,height設置寬
B.width設置寬,height設置高
C.寬與高的設置值只能用像素px
D.寬與高的只能用百分數設置
4.單項選擇題index.html與img文件夾在同一級目錄下,jiong.jpg存放在img文件夾里,如何在index.html中插入jiong.jpg?()
A.<img src="./img/jiong.jpg",width="100px">
B.<img src="./img/jiong.jpg">
C.<img src="img/jiong.jpg">
D.<img href="img/jiong.jpg",width="100px">
5.單項選擇題如果要為span設置寬、高、外邊距margin、換行,需要先設置()。
A.先轉成塊級元素,用display:block
B.先轉成行內塊元素,用display:inline-block
C.先轉成行內元素,用display:inline
D.以上都不對