Webcourse/13-前端面试/01-面试必看/01-页面布局.md

503 lines
11 KiB
JavaScript
Raw Normal View History

2018-03-05 19:36:59 +08:00
2018-04-08 22:41:47 +08:00
## 前端面试前言
2018-03-05 19:36:59 +08:00
### 面试基础
- 页面布局
- CSS盒模型是CSS的基石
- DOM事件
- HTTP协议
- 面向对象
- 原型链能说出原型链的始末
### 面试进阶
- 通信普通的通信跨域通信
- 安全CSRFXSS
- 算法
### 回答问题时要注意的
1题干的要求真的是字面要求的这么简单吗
2答案怎么写技巧在哪里
3如果想证明我的实力应该有几种答案
2018-04-08 22:41:47 +08:00
本文来讲一下页面布局
2018-03-05 19:36:59 +08:00
2018-04-08 22:41:47 +08:00
## 题目页面布局
2018-03-05 19:36:59 +08:00
2019-11-03 14:20:08 +08:00
问题假设容器的高度默认100px请写出**三栏布局**其中左栏右栏的宽度各为300px中间的宽度自适应
2018-03-05 19:36:59 +08:00
2018-03-06 22:22:25 +08:00
![](http://img.smyhvae.com/20180305_1520.png)
2018-03-05 19:36:59 +08:00
分析
初学者想到的答案有两种
- 方法1浮动
- 方法2绝对定位
但要求你能至少写出三四种方法才算及格剩下的方法如下
- 方法3flexbox移动开发里经常用到
- 方法4表格布局 table虽然已经淘汰了但也应该了解
- 方法5网格布局 grid
下面分别讲解
### 方法1 和方法2
**方法1浮动**
左侧设置左浮动右侧设置右浮动即可中间会自动地自适应
**方法2绝对定位**
左侧设置为绝对定位 left0px右侧设置为绝对定位 right0px中间设置为绝对定位left 和right 都为300px即可中间的宽度会自适应
使用`article`标签作为容器包裹左右三个部分
方法1 和方法2 的代码如下
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
html * {
padding: 0px;
margin: 0px;
}
.layout {
margin-bottom: 150px;
}
.layout article div { /*注意这里是设置每个小块儿的高度为100px而不是设置大容器的高度。大容器的高度要符合响应式*/
height: 100px;
}
/* 方法一 start */
.layout.float .left {
float: left;
width: 300px;
background: red;
}
.layout.float .right {
float: right;
width: 300px;
background: blue;
}
.layout.float .center {
background: green;
}
/* 方法一 end */
/* 方法二 start */
.layout.absolute .left-center-right {
position: relative;
}
.layout.absolute .left {
position: absolute;
left: 0;
width: 300px;
background: red;
}
/* 【重要】中间的区域左侧定位300px右侧定位为300px即可完成。宽度会自使用 */
.layout.absolute .center {
position: absolute;
left: 300px;
right: 300px;
background: green;
}
.layout.absolute .right {
position: absolute;
right: 0;
width: 300px;
background: blue;
}
/* 方法二 end */
</style>
</head>
<body>
<!-- 方法一浮动 start -->
<!-- 输入 section.layout.float即可生成 -->
<section class="layout float">
<!-- article 标签包裹左右三个部分 -->
<article class="left-right-center">
<!-- 输入 div.left+div.right+div.center即可生成 -->
<div class="left">
我是 left
</div>
<div class="right">
我是 right
</div>
<div class="center">
浮动解决方案
我是 center
</div>
</article>
</section>
<!-- 方法一浮动 end -->
<section class="layout absolute">
<article class="left-center-right">
<div class="left">
我是 left
</div>
<div class="right">
我是 right
</div>
<div class="center">
<h1>绝对定位解决方案</h1>
我是 center
</div>
</article>
</section>
</body>
</html>
```
注意上方代码中 className 定义和使用非常规范
效果如下
2018-03-06 22:22:25 +08:00
![](http://img.smyhvae.com/20180305_1640.gif)
2018-03-05 19:36:59 +08:00
### 方法3flexbox布局
将左中右所在的容器设置为`display: flex`设置两侧的宽度后然后让中间的`flex = 1`即可
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
html * {
padding: 0;
margin: 0;
}
.layout article div {
height: 100px;
}
.left-center-right {
display: flex;
}
.layout.flex .left {
width: 300px;
background: red;
}
.layout.flex .center {
flex: 1;
background: green;
}
.layout.flex .right {
width: 300px;
background: blue;
}
</style>
</head>
<body>
<section class="layout flex">
2019-08-20 14:49:09 +08:00
<article class="left-center-right">
2018-03-05 19:36:59 +08:00
<div class="left">
我是 left
</div>
<div class="center">
<h1>flex布局解决方案</h1>
我是 center
</div>
<div class="right">
我是 right
</div>
</article>
</section>
</body>
</html>
```
效果如下
2018-03-06 22:22:25 +08:00
![](http://img.smyhvae.com/20180305_1700.gif)
2018-03-05 19:36:59 +08:00
### 方法4表格布局 table
设置整个容器的宽度为100%设置三个部分均为表格然后左边的单元格为 300px右边的单元格为 300px即可中间的单元格会自适应
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
html * {
padding: 0;
margin: 0;
}
.layout.table div {
height: 100px;
}
/* 重要设置容器为表格布局宽度为100% */
.layout.table .left-center-right {
width: 100%;
display: table;
height: 100px;
}
.layout.table .left-center-right div {
display: table-cell; /* 重要:设置三个模块为表格里的单元*/
}
.layout.table .left {
width: 300px;
background: red;
}
.layout.table .center {
background: green;
}
.layout.table .right {
width: 300px;
background: blue;
}
</style>
</head>
<body>
<section class="layout table">
<article class="left-center-right">
<div class="left">
我是 left
</div>
<div class="center">
<h1>表格布局解决方案</h1>
我是 center
</div>
<div class="right">
我是 right
</div>
</article>
</section>
</body>
</html>
```
2018-03-06 22:22:25 +08:00
![](http://img.smyhvae.com/20180305_1855.gif)
2018-03-05 19:36:59 +08:00
### 方法5网格布局 grid
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
html * {
padding: 0;
margin: 0;
}
2018-03-10 11:50:39 +08:00
/* 重要设置容器为网格布局宽度为100% */
2018-03-05 19:36:59 +08:00
.layout.grid .left-center-right {
display: grid;
width: 100%;
grid-template-rows: 100px;
2018-03-10 11:50:39 +08:00
grid-template-columns: 300px auto 300px; /* 重要:设置网格为三列,并设置每列的宽度。即可。*/
2018-03-05 19:36:59 +08:00
}
.layout.grid .left {
background: red;
}
.layout.grid .center {
background: green;
}
.layout.grid .right {
background: blue;
}
</style>
</head>
<body>
<section class="layout grid">
<article class="left-center-right">
<div class="left">
我是 left
</div>
<div class="center">
<h1>网格布局解决方案</h1>
我是 center
</div>
<div class="right">
我是 right
</div>
</article>
</section>
</body>
</html>
```
效果
2018-03-06 22:22:25 +08:00
![](http://img.smyhvae.com/20180305_1920.gif)
2018-03-05 19:36:59 +08:00
### 延伸五种方法的对比
- 五种方法的优缺点
- 考虑中间模块的高度问题
- 兼容性问题实际开发中哪个最实用
方法1浮动
- 优点兼容性好
- 缺点浮动会脱离标准文档流因此要清除浮动我们解决好这个问题即可
方法:2绝对定位
- 优点快捷
- 缺点导致子元素也脱离了标准文档流可实用性差
方法3flex 布局CSS3中出现的
- 优点解决上面两个方法的不足flex布局比较完美移动端基本用 flex布局
方法4表格布局
- 优点表格布局在很多场景中很实用兼容性非常好因为IE8不支持 flex此时可以尝试表格布局
- 缺点因为三个部分都当成了**单元格**来对待此时如果中间的部分变高了其会部分也会被迫调整高度但是在很多场景下我们并不需要两侧的高度增高
什么时候用 flex 布局 or 表格布局看具体的场景二者没有绝对的优势也没有绝对的不足
方法5网格布局
- CSS3中引入的布局很好用代码量简化了很多
PS面试提到网格布局说明我们对新技术是有追求的
### 延伸如果题目中去掉高度已知
问题题目中如果去掉高度已知我们往中间的模块里塞很多内容让中间的模块撑开会发生什么变化哪个布局就不能用了
分析其实可以这样理解我们回去看上面的动画效果当中间的模块变得很挤时会发生什么效果就是我们想要的答案
答案是**flex 布局和表格布局可以通用**其他三个布局都不能用了
2018-03-06 13:41:43 +08:00
### 页面布局的变通
2018-03-06 22:22:25 +08:00
![](http://img.smyhvae.com/20180305_1931.png)
2018-03-06 13:41:43 +08:00
`上下高度固定,中间自适应`这个在移动端的页面中很常见
2018-03-05 19:36:59 +08:00
### 总结
涉及到的知识点
1语义化掌握到位每个区域用`section``article`代表容器`div`代表块儿如果通篇都用 div那就是语义化没掌握好
2页面布局理解深刻
3CSS基础知识扎实
4思维灵活且积极上进题目中可以通过`网格布局`来体现
2018-03-06 13:41:43 +08:00
5代码书写规范注意命名上面的代码中没有一行代码是多的
2018-03-05 19:36:59 +08:00