腾讯校园招聘前端实习生面试题及答案 - Go语言中文社区

腾讯校园招聘前端实习生面试题及答案


一、   耐心填一填!(每空4分,共24分)

1. 为div设置类a与b,应编写HTML代码 _<div class=”a b”>_</div>_________。

2. 设置CSS属性clear的值为 _both___________时可清除左右两边浮动。

3.   ____li________标签必须直接嵌套于ul、ol中。

4. CSS属性 _____margin_______可为元素设置外补丁。

5. 设置CSS属性float的值为 ___none_________时可取消元素的浮动。

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

二、   精心选一选!(每题4分,共16分)

1. 下列哪个样式定义后,内联(非块状)元素可以定义宽度和高度( C  )

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

2. 选出你认为最合理的定义标题的方法( C    )

A. <span class=”heading”>文章标题</span>

B. <p><b>文章标题</b></p>

C. <h1>文章标题</h1>

D. <strong>文章标题</strong>

3. br标签在XHTML中语义为( A    )

A.换行          B.强调          C.段落          D.标题

4. 不换行必须设置(  AC  )

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

5. 在使用table表现数据时,有时候表现出来的会比自己实际设置的宽度要宽,为此需要设置下面哪些属性值(  AD   )

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

三、判断对或错! (每题4分,共24分)

1. CSS属性font-style 用于设置字体的粗细。                             (  ×   )

2. CSS属性overflow用于设置元素超过宽度时是否隐藏或显示滚动条。     (   √  )

3. 在不涉及样式情况下,页面元素的优先显示与结构摆放顺序无关。            (   ×  )

4. 在不涉及样式情况下,页面元素的优先显示与标签选用无关。                 (   √  )

5. display:inline兼容所有的浏览器。                              (  √   )

6. input属于窗体元素,层级显示比flash、其它元素都高。              (   ×  )

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

1. 写出ul、ol、dl三种列表的html结构。

答:

  1. <ul> 
  2.          <li> </li> 
  3.    </ul> 
  4.    <ol> 
  5.          <li> </li> 
  6.    </ol> 
  7.    <dl> 
  8.         <dt> </dt> 
  9.         <dd> </dd> 
  10.    </dl> 

2. 将以下CSS代码进行缩写,注意要符合缩写的规范。

a) 代码一:

  1. border-width:1px;  
  2. border-color:#000;  
  3. border-style:solid;  

b) 代码二:

  1. background-position:0 0;  
  2. background-repeat:no-repeat;  
  3. background-attachment:fixed;  
  4. background-color:#f00;  
  5. background-image:url(background.gif);  

c)代码三:

  1. font-style:italic;  
  2. font-family:"Lucida Grande",sans-serif;  
  3. font-size:1em;  
  4. font-weight:bold;  
  5. font-variant:small-caps;  
  6. line-height:140%;  

d) 代码四:

  1. list-style-position:inside;  
  2. list-style-type:square;  
  3. list-style-image:url(image.gif); 

e)代码五:

  1. margin-left:20px;  
  2. margin-right:20px;  
  3. margin-bottom:5px;  
  4. margin-top:20px

f)代码六

  1. color:#336699;  
  2. 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)

代码:

<div> <h2>Don’t buy these electronics used</h2> Money may be tight, but you may kick yourself for purchasing these electronics secondhand. <br /> Even when the price is low, the risk may be too high. <br /> <p><img src=”album.jpg”></p> <p> <a href=”home.html” target=”_blank”>home</a> <a href=”content.html” target=”_blank”>content</a> </p> </div>

答:

<div>  <h2>Don’t buy these electronics used</h2>  <p> Money may be tight, but you may kick yourself for purchasing these electronics secondhand. </p>  <p>Even when the price is low, the risk may be too high.</p>  <img src="album.jpg" alt="album" />  <ul>    <li><a href="home.html" rel="external" title="home">home</a></li>    <li><a href="content.html" rel="external" title="content">content</a></li>  </ul></div>

4. 简述border:none以及border:0的区别,并给出使用建议。

答:border:none表示边框样式无,border:0表示边框宽度为0;当定义了border:none,即隐藏了边框的显示,实际就是边框宽度为0.
当定义边框时,必须定义边框的显示样式.因为边框默认样式为不显示none,所以仅设置边框宽度,由于样式不存在,边框的宽度也自动被设置为0.

五、勇气拼一拼,让你超越别人的加分题目来了! (不限于一种方法,共30分)

使用重构的方式制作出一个如下图的水平、垂直都居中短边为50px,长边为150px的红色十字架。

十字架

要求:

1.使用2个div完成

2.使用3个div完成

3.使用5个div完成

答案:

1.使用2个div完成

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
  2. <html xmlns="http://www.w3.org/1999/xhtml"> 
  3. <head> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  5. <title>2个DIV</title> 
  6. <style type="text/css"> 
  7. #heng,#shu{left:50%;top:50%;position:absolute; background-color:#f00;}  
  8. #shu{width:50px;height:150px;margin-left:-25px;margin-top:-75px;}  
  9. #heng{width:150px;height:50px;margin-left:-75px;margin-top:-25px;background-color:#f00;}  
  10. </style> 
  11. </head> 
  12. <body> 
  13.      <div id="heng"></div> 
  14.      <div id="shu"></div> 
  15. </body> 
  16. </html> 

2.使用3个div完成

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
  2. <html xmlns="http://www.w3.org/1999/xhtml"> 
  3. <head> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  5. <style type="text/css"> 
  6. .main{width:150px; height:150px; top:50%; left:50%; position:absolute; margin:-75px 0 0 -75px; border:2px #F00 solid;}  
  7. .heng{width:150px; height:50px; background:#F00; margin-top:50px;}  
  8. .shu{width:50px; height:150px; background:#F00; margin-left:50px; margin-top:-100px;/*margin上边界叠加*/}  
  9. </style> 
  10. <title>3个DIV</title> 
  11. </head> 
  12. <body> 
  13.   <div class="main"> 
  14.          <div class="heng"></div> 
  15.          <div class="shu"></div> 
  16. </div> 
  17. </body> 
  18. </html> 

3.使用5个div完成

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
  2. <html xmlns="http://www.w3.org/1999/xhtml"> 
  3. <head> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  5. <title>5个DIV(www.hemin.cn)</title> 
  6. <style type="text/css"> 
  7. #top,#middle,#left,#right,#bottom{height:50px;width:50px;position:absolute;top:50%;left:50%;}  
  8. #top{margin:-75px 0 0 -25px;background:#F00;}  
  9. #middle{margin:-25px 0 0 -25px;background:#000;}  
  10. #left{margin:-25px 0 0 -75px;background:#00F;}  
  11. #right{margin:-25px 0 0 25px;background:#0F0;}  
  12. #bottom{margin:25px 0 0 -25px;background:#FF0;}  
  13. </style> 
  14. </head> 
  15. <body> 
  16. <div id="top"></div> 
  17. <div id="middle"></div> 
  18. <div id="left"></div> 
  19. <div id="right"></div> 
  20. <div id="bottom"></div> 
  21. </body> 
  22. </html> 

版权声明:本文来源51CTO,感谢博主原创文章,遵循 CC 4.0 by-sa 版权协议,转载请附上原文出处链接和本声明。
原文链接:http://developer.51cto.com/art/201206/344337.htm
站方申明:本站部分内容来自社区用户分享,若涉及侵权,请联系站方删除。
  • 发表于 2021-05-15 23:13:27
  • 阅读 ( 1983 )
  • 分类:面试题

0 条评论

请先 登录 后评论

官方社群

GO教程

猜你喜欢