前端Web开发面试问题
应用介绍
此项目是前端Web开发面试问题讲解。
## HTML 部分问题与解答
这里是 [Front End Web Development Quiz]HTML 部分问题与解答
1. Q: `<keygen>` 是正确的HTML5标签吗?
A: 是。
`<keygen>` 标签规定用于表单的密钥对生成器字段。当提交表单时,私钥存储在本地,公钥发送到服务器。是HTML5 标签。
2. Q: `<bdo>` 标签是否可以改变文本方向?
A: 可以。
`<bdo>`标签覆盖默认的文本方向。
```
<bdo dir="rtl">Here is some text</bdo>
```
3. Q: 下列HTML代码是否正确?
```
<figure>
<img src="myimage.jpg" alt="My image">
<figcaption>
<p>This is my self portrait.</p>
</figcaption>
</figure>
```
A: 正确
`<figure>` 标签规定独立的流内容(图像、图表、照片、代码等等)。`figure` 元素的内容应该与主内容相关,但如果被删除,则不应对文档流产生影响。使用`<figcaption>`元素为`figure`添加标题(caption)。
4. Q: 哪种情况下应该使用`small`标签?当你想在`h1` 标题后创建副标题?还是当在`footer`里面增加版权信息?
A: `small`标签一般使用场景是在版权信息和法律文本里使用,也可以在标题里使用标注附加信息(bootstrap中可见),但不可以用来创建副标题。
> The HTML Small Element (`<small>`) makes the text font size one size smaller (for example, from large to medium, or from small to x-small) down to the browser's minimum font size. In HTML5, this element is repurposed to represent side-comments and small print, including copyright and legal text, independent of its styled presentation.
5. Q: 在一个结构良好的web网页里,多个`h1`标签会不利于SEO吗?
A: 不影响。
> According to Matt Cutts (lead of Google's webspam team and the de facto expert on these things), using multiple `<h1>` tags is fine, as long as you're not abusing it (like sticking your whole page in an `<h1>` and using CSS to style it back to normal size). That would likely have no effect, and might trigger a penalty, as it looks spammy.
> If you have multiple headings and it would be natural to use multiple `<h1>`'s, then go for it.
6. Q: 如果你有一个搜索结果页面,你想高亮搜索的关键词。什么HTML 标签可以使用?
A:`<mark>` 标签表现高亮文本。
> The HTML `<mark>` Element represents highlighted text, i.e., a run of text marked for reference purpose, due to its relevance in a particular context. For example it can be used in a page showing search results to highlight every instance of the searched for word.
7. Q: 下列代码中`scope` 属性是做什么的?
```
<article>
<h1>Hello World</h1>
<style scoped>
p {
color: #FF0;
}
</style>
<p>This is my text</p>
</article>
<article>
<h1>This is awesome</h1>
<p>I am some other text</p>
</article>
```
A: `scoped` 属性是一个布尔属性。如果使用该属性,则样式仅仅应用到 style 元素的父元素及其子元素。
8. HTML5 支持块级超链接吗?例如:
```
<article>
<a href="#">
<h1>Hello</h1>
<p>I am some text</p>
</a>
</article>
```
HTML5中`<a>` 元素表现为一个超链接,支持任何行内元素和块级元素。
9. Q: 当下列的HTML代码加载时会触发新的HTTP请求吗?
```
<img src="mypic.jpg" style="visibility: hidden" alt="My picture">
```
10. Q: 当下列的HTML代码加载时会触发新的HTTP请求吗?
```
<div style="display: none;">
<img src="mypic.jpg" alt="My photo">
</div>
```
11. `main1.css`一定会在`alert('Hello world')`被加载和编译吗?
```
<head>
<link href="main1.css" rel="stylesheet">
<script>
alert('Hello World');
</script>
</head>
```
12. Q: 在`main2.css`获取前`main1`一定必须被下载解析吗?
```
<head>
<link href="main1.css" rel="stylesheet">
<link href="main2.css" rel="stylesheet">
</head>
```
13. Q: 在`Paragraph 1`加载后`main2.css`才会被加载编译吗?
```
<head>
<link href="main1.css" rel="stylesheet">
</head>
<body>
<p>Paragraph 1</p>
<p>Paragraph 2</p>
<link href="main2.css" rel="stylesheet">
</body>
```
。。。。。。。想了解更多请下载附件。
©版权声明:本文内容由互联网用户自发贡献,版权归原创作者所有,本站不拥有所有权,也不承担相关法律责任。如果您发现本站中有涉嫌抄袭的内容,欢迎发送邮件至: [email protected] 进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。
转载请注明出处: apollocode » 前端Web开发面试问题
文件列表(部分)
名称 | 大小 | 修改日期 |
---|---|---|
.editorconfig | 0.18 KB | 2019-09-11 |
google06290e14368c0ea3.html | 0.05 KB | 2019-09-11 |
index.html | 1.65 KB | 2019-09-11 |
package-lock.json | 14.23 KB | 2019-09-11 |
package.json | 0.35 KB | 2019-09-11 |
1.md | 3.91 KB | 2020-08-30 |
11.md | 2.17 KB | 2020-08-30 |
2.md | 2.18 KB | 2020-08-30 |
5.md | 4.81 KB | 2020-08-30 |
6.md | 5.48 KB | 2020-08-30 |
7.md | 4.50 KB | 2020-08-30 |
8.md | 0.48 KB | 2019-09-11 |
9.md | 0.49 KB | 2019-09-11 |
css.md | 1.42 KB | 2020-08-30 |
html.md | 0.73 KB | 2020-08-30 |
http.md | 0.50 KB | 2020-08-30 |
js.md | 2.21 KB | 2020-08-30 |
sw.js | 1.38 KB | 2019-09-11 |
android-icon-144x144.png | 4.13 KB | 2019-09-11 |
android-icon-192x192.png | 7.44 KB | 2019-09-11 |
android-icon-36x36.png | 1.24 KB | 2019-09-11 |
android-icon-48x48.png | 1.54 KB | 2019-09-11 |
android-icon-72x72.png | 2.10 KB | 2019-09-11 |
android-icon-96x96.png | 2.67 KB | 2019-09-11 |
apple-icon-114x114.png | 3.24 KB | 2019-09-11 |
apple-icon-120x120.png | 5.43 KB | 2019-09-11 |
apple-icon-144x144.png | 4.13 KB | 2019-09-11 |
apple-icon-152x152.png | 4.39 KB | 2019-09-11 |
apple-icon-180x180.png | 9.00 KB | 2019-09-11 |
apple-icon-57x57.png | 1.78 KB | 2019-09-11 |
发表评论 取消回复