本文主要介绍“网络前端实习生面试问题有哪些”。在日常操作中,我相信很多人对于web前端实习生的问题有什么疑惑。边肖查阅了各种资料,整理出简单易用的操作方法,希望能帮助大家解答“web前端实习生面试问题有哪些”的疑惑!接下来,请和边肖一起学习!
一、 耐心填一填!(每空4分,共24分)
1.要为div设置类A和类B,您应该编写HTML代码_ DIV class=“A B”_ _/DIV _ _ _ _ _ _ _ _ _ _ _ _ _ _
2.当CSS属性clear设置为_ both _both___________ _时,可以清除左右浮动。
3._ _ _ _ li ___________标签必须直接嵌套在ul和ol中。
4.CSS属性_ _ _ _ _ _ _ margin _ _ _ _ _ _ _ _ _ _ _可以为元素设置外部补丁。
5.将CSS属性float的值设置为_ _ _ _ _ none _ _ _ _ _ none _ _ _ _ _可以取消元素的浮动。
6.文本居中的CSS代码是_ ____文本对齐:居中_____。
二、 精心选一选!(每题4分,共16分)
1.定义以下哪种样式后,内联(非块)元素可以定义宽度和高度(C)
A.显示:内联显示:内联显示:内联显示:块显示:内联显示
2.选择你认为最合理的方法来定义标题(c)
A.span class="heading "文章标题/span
B.pb文章标题/b/p
C.h2文章标题/h2
d . strong文章标题/strong
3.br标签在XHTML中具有(a)的语义
A.行馈送b .强调c .段落d .标题
4.不得设置换行
a .断字b .字母间距c .空白d .单词间距
5.使用表格表示数据时,有时会比实际设置的宽度宽,那么需要设置以下哪个属性值(AD)?
A.cellpadding=" 0Primeb . padding :0 c . margin :0d . cellspacing=" 0 prime;
三、判断对或错! (每题4分,共24分)
1.CSS属性字体样式用于设置字体粗细。(次;)
2.CSS属性溢出用于设置当元素超过宽度时滚动条是隐藏还是显示。(radic)
3.没有样式,页面元素的优先显示与结构放置的顺序无关。(次;)
4.当不涉及样式时,页面元素的优先显示与标签选择无关。(=NationalBureauofStandards)国家标准局
p; ( √ )
5. display:inline兼容所有的浏览器。 ( √ )
6. input属于窗体元素,层级显示比flash、其它元素都高。 ( × )
四、用心想一想,你一定是生活中的智者! (每题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)
代码:
<div> <h3>Don’t buy these electronics used</h3> 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> <h3>Don’t buy these electronics used</h3> <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完成
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>2个DIV</title> <style type="text/css"> #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;} </style> </head> <body> <div id="heng"></div> <div id="shu"></div> </body> </html>
2.使用3个div完成
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style type="text/css"> .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上边界叠加*/} </style> <title>3个DIV</title> </head> <body> <div class="main"> <div class="heng"></div> <div class="shu"></div> </div> </body> </html>
3.使用5个div完成
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>5个DIV(www.hemin.cn)</title> <style type="text/css"> #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;} </style> </head> <body> <div id="top"></div> <div id="middle"></div> <div id="left"></div> <div id="right"></div> <div id="bottom"></div> </body> </html>
到此,关于“web前端实习生面试题有哪些”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注网站,小编会继续努力为大家带来更多实用的文章!
内容来源网络,如有侵权,联系删除,本文地址:https://www.230890.com/zhan/101256.html