真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

web前端實習生面試題有哪些

這篇文章主要介紹“web前端實習生面試題有哪些”,在日常操作中,相信很多人在web前端實習生面試題有哪些問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”web前端實習生面試題有哪些”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

創(chuàng)新互聯(lián)公司從2013年創(chuàng)立,是專業(yè)互聯(lián)網(wǎng)技術服務公司,擁有項目成都網(wǎng)站建設、成都網(wǎng)站制作網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元武鳴做網(wǎng)站,已為上家服務,為武鳴各地企業(yè)和個人服務,聯(lián)系電話:18982081108

一、   耐心填一填?。靠?分,共24分)

1. 為div設置類a與b,應編寫HTML代碼 _

_
_________。

2. 設置CSS屬性clear的值為 _both___________時可清除左右兩邊浮動。

3.   ____li________標簽必須直接嵌套于ul、ol中。

4. CSS屬性 _____margin_______可為元素設置外補丁。

5. 設置CSS屬性float的值為 ___none_________時可取消元素的浮動。

6. 文字居中的CSS代碼是 ____text-align:center________。

二、   精心選一選!(每題4分,共16分)

1. 下列哪個樣式定義后,內(nèi)聯(lián)(非塊狀)元素可以定義寬度和高度( C  )

A. display:inline      B. display:none     C. display:block    D. display:inheric

2. 選出你認為最合理的定義標題的方法( C    )

A. 文章標題

B.

文章標題

C.

文章標題

D. 文章標題

3. br標簽在XHTML中語義為( A    )

A.換行          B.強調          C.段落          D.標題

4. 不換行必須設置(  AC  )

A.word-break        B.letter-spacing        C.white-space       D.word-spacing

5. 在使用table表現(xiàn)數(shù)據(jù)時,有時候表現(xiàn)出來的會比自己實際設置的寬度要寬,為此需要設置下面哪些屬性值(  AD   )

A. cellpadding=”0″      B. padding:0        C. margin:0     D.  cellspacing=”0″

三、判斷對或錯! (每題4分,共24分)

1. CSS屬性font-style 用于設置字體的粗細。                             (  ×   )

2. CSS屬性overflow用于設置元素超過寬度時是否隱藏或顯示滾動條。     (   √  )

3. 在不涉及樣式情況下,頁面元素的優(yōu)先顯示與結構擺放順序無關。            (   ×  )

4. 在不涉及樣式情況下,頁面元素的優(yōu)先顯示與標簽選用無關。                 (   √  )

5. display:inline兼容所有的瀏覽器。                              (  √   )

6. input屬于窗體元素,層級顯示比flash、其它元素都高。              (   ×  )

四、用心想一想,你一定是生活中的智者! (每題9分,共36分)

1. 寫出ul、ol、dl三種列表的html結構。

答:

              
  •  
  •     
    
              
  1.  
  2.     
    
         
 
         
 
    

2. 將以下CSS代碼進行縮寫,注意要符合縮寫的規(guī)范。

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)

代碼:

Don’t buy these electronics used

Money may be tight, but you may kick yourself for purchasing these electronics secondhand.
Even when the price is low, the risk may be too high.

home content

答:

 

Don’t buy these electronics used

 

Money may be tight, but you may kick yourself for purchasing these electronics secondhand.

 

Even when the price is low, the risk may be too high.

 album  

4. 簡述border:none以及border:0的區(qū)別,并給出使用建議。

答:border:none表示邊框樣式無,border:0表示邊框寬度為0;當定義了border:none,即隱藏了邊框的顯示,實際就是邊框寬度為0.
當定義邊框時,必須定義邊框的顯示樣式.因為邊框默認樣式為不顯示none,所以僅設置邊框寬度,由于樣式不存在,邊框的寬度也自動被設置為0.

五、勇氣拼一拼,讓你超越別人的加分題目來了! (不限于一種方法,共30分)

使用重構的方式制作出一個如下圖的水平、垂直都居中短邊為50px,長邊為150px的紅色十字架。

web前端實習生面試題有哪些

十字架

要求:

1.使用2個div完成

2.使用3個div完成

3.使用5個div完成

答案:

1.使用2個div完成

    2個DIV  #heng,#shu{left:50%;top:50%;position:absolute; background-color:#f00;}  #shu{width:50px;height:150px;margin-left:-25px;margin-top:-75px;}  #heng{width:150px;height:50px;margin-left:-75px;margin-top:-25px;background-color:#f00;}          
      
  

2.使用3個div完成

     .main{width:150px; height:150px; top:50%; left:50%; position:absolute; margin:-75px 0 0 -75px; border:2px #F00 solid;}  .heng{width:150px; height:50px; background:#F00; margin-top:50px;}  .shu{width:50px; height:150px; background:#F00; margin-left:50px; margin-top:-100px;/*margin上邊界疊加*/}   3個DIV               
             

3.使用5個div完成

    5個DIV(www.hemin.cn)  #top,#middle,#left,#right,#bottom{height:50px;width:50px;position:absolute;top:50%;left:50%;}  #top{margin:-75px 0 0 -25px;background:#F00;}  #middle{margin:-25px 0 0 -25px;background:#000;}  #left{margin:-25px 0 0 -75px;background:#00F;}  #right{margin:-25px 0 0 25px;background:#0F0;}  #bottom{margin:25px 0 0 -25px;background:#FF0;}           

到此,關于“web前端實習生面試題有哪些”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
文章名稱:web前端實習生面試題有哪些
標題網(wǎng)址:http://weahome.cn/article/psehde.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部