A.直接插入兩個DIV標(biāo)記,會自動排在同一行
B.指定DIV的position屬性為absolute,然后將層位置拖放到同一行中
C.指定DIV標(biāo)記的寬,并且指定其浮動方式,當(dāng)層寬度之和小于外層元素 寬度時,會排在同一行
D.使用一個表格,將兩個層分別放入一行中的兩個單元格內(nèi)
您可能感興趣的試卷
你可能感興趣的試題
A.指網(wǎng)頁元素的位置,距離左邊框和上邊框的距離
B.指網(wǎng)頁元素的位置,距離右邊框和下邊框的距離
C.指網(wǎng)頁元素的定位方式,可以取值中包括absolute
D.指網(wǎng)頁元素的內(nèi)容溢出時,是否顯示多余的內(nèi)容
A.document.all.a.style.color
B.document.all.a.style.backgroundColor
C.document.a.color
D.document.a.gackgroundColor
下列代碼能產(chǎn)生()個輸出
1 var i = 1;
2 for(;;i++)
3 if(i)
4 alert(i);
5 else
6 break;
A.0個
B.無限多個
C.19個
D.20個
A.document.menuBar.display += 20
B.document.all.menuBar.pixelLeft += 20
C.document.all.menuBar.left += 20
D.document.all.menuBar.style.pixelLeft += 20
A.document.username.value
B.document.all.username.value
C.document.getElementById(“username”).value
D.如果表單元素外層無表單,則可以直接使用username.value