- 相關推薦
筆試(網頁設計)2
四、用心想一想,你一定是生活中的智者! (每題9分,共36分)
1. 寫出ul、ol、dl三種列表的html結構。
答:
<ul> <li> </li> </ul> <ol> <li> </li> </ol> <dl> <dt> </dt> <dd> </dd>
</dl>
2. 將以下CSS代碼進行縮寫,注意要符合縮寫的規范。
a) 代碼一:
border-width:1px;
border-color:#000;
border-style:solid;
b) 代碼二:
background-position:0 0;
background-repeat:no-repeat;
background-attachment:fixed;
background-color:#f00;
background-image:url(background.gif);
c) 代碼三:
font-style:italic;
font-family:"Lucida Grande",sans-serif;
font-size:1em;
font-weight:bold;
font-variant:small-caps;
line-height:140%;
d) 代碼四:
list-style-position:inside;
list-style-type:square;
list-style-image:url(image.gif);
e) 代碼五:
margin-left:20px;
margin-right:20px;
margin-bottom:5px;
margin-top:20px;
f) 代碼六:
color:#336699;
color:#ffcc00;
答:
代碼一:border:1px #000 solid;
代碼二:background: #f00 url(background.gif) no-repeat fixed 0 0;
代碼三:font:italic bold small-caps 1em/140% "lucida Grande",sans-serif;
代碼四:list-style: url(image.gif) square inside;
代碼五:margin:20px 20px 5px 20px;
代碼六:color:#369;color:#fc0;
3. 修改以下代碼,使其結構更加合理以及符合W3C標準。(XHTML 1.0 Strict)
4. 簡述border:none以及border:0的區別,并給出使用建議。
答:border:none表示邊框樣式無,border:0表示邊框寬度為0;當定義了border:none,即隱藏了邊框的顯示,實際就是邊框寬度為0.
當定義邊框時,必須定義邊框的顯示樣式.因為邊框默認樣式為不顯示none,所以僅設置邊框寬度,由于樣式不存在,邊框的寬度也自動被設置為0.
【筆試網頁設計2】相關文章:
應聘網頁設計師筆試題分享11-21
網頁設計心得12-22
網頁設計總結12-23
網頁設計課程03-08
網頁設計基礎03-08
網頁設計的步驟06-16
設計理念筆試題12-16
網頁設計廣告口號01-07
網頁設計實習總結11-08
網頁設計培訓心得05-12