css居中與佈局
- 水平居中
1.行內元素:text-align:center
<p class="cen">居中</p> //html程式碼
.cen{ //css程式碼
text-align:center;
border:1px solid red;
}
2.塊級元素
讓塊級元素居中的方法就是設定 margin-left
和 margin-right
為 auto
margin:0 auto
<div class="first"></div> //html
.first{ //css
width:20px;
height:20px;
margin:0 auto;
border:1px solid red;
}
- 垂直居中
1.設定padding-top與padding-bottom相等
<div class="first">first</div> //html
.first{ //css
width:200px;
padding-top:20px;
padding-bottom:20px;
border:1px solid red;
}
2.設定height與line-height相等
<div class="first">first</div> //html
.first{ //css
width:100px;
height: 50px;
line-height: 50px;
border:1px solid red;
}
- 左右佈局
通過float浮動實現,float:left與float:right
<div class="first">leftcontent</div>
<div class="second">rightcontent</div>
.first{
width:100px;
height: 100px;
float:left;
border:1px solid red;
}
.second{
width:100px;
height: 100px;
float:right;
border:1px solid green;
}
- 左中右佈局
思路:使用div將左中左浮,右側右浮
<div class="out">
<div class="clearfix inner" style="float:left">
<div class="first">left</div>
<div class="first">middle</div>
</div>
<div class="third">right</div>
</div>
.out{
width:354px;
height:100px;
border:1px solid red;
}
.clearfix::after{
content:'';
display:block;
clear:both;
}
.first{
width:100px;
height: 100px;
float:left;
border:1px solid red;
}
.second{
width:100px;
height: 100px;
float:left;
border:1px solid green;
margin-left:25px;
}
.third{
width:100px;
height: 100px;
float:right;
border:1px solid green;
}
其他技巧:
google關鍵字:
- css shadow generator 生成陰影
- css gradient generator 漸變背景
- webpage free psd 免費psd檔案
- dribbble 網站
- css tricks shape css形狀程式碼
- iconfont.cn 圖示庫
- wallhaven 高清桌布
相關文章
- CSS如何佈局與居中CSS
- CSS佈局 --- 居中佈局CSS
- CSS常見佈局與居中CSS
- CSS 佈局之水平居中佈局CSS
- CSS之居中佈局CSS
- CSS佈局-各種居中CSS
- css經典佈局系列一——垂直居中佈局CSS
- css佈局和居中簡析CSS
- CSS佈局——div居中方法CSS
- 居中佈局、三欄佈局
- L – 居中佈局
- 成品直播原始碼推薦,常用的css居中佈局原始碼CSS
- CSS經典佈局——聖盃佈局與雙飛翼佈局CSS
- css佈局-float佈局CSS
- 佈局總結-水平居中佈局的實現
- 關於css佈局、居中的問題以及一些小技巧CSS
- 【css】佈局CSS
- css 佈局CSS
- CSS佈局CSS
- 前端面試之居中佈局前端面試
- flex彈性佈局 垂直居中Flex
- CSS佈局概念與技術教程CSS
- CSS佈局之三欄佈局CSS
- CSS佈局 --- 自適應佈局CSS
- CSS佈局 --- 等寬&等高佈局CSS
- flex居中佈局程式碼例項Flex
- 兩列居中寬度固定佈局
- CSS 佈局模式CSS模式
- CSS 佈局模型CSS模型
- css佈局方法CSS
- css flex佈局CSSFlex
- CSS Grid 佈局CSS
- css佈局系列1——盒模型佈局CSS模型
- CSS 兩欄佈局和三欄佈局CSS
- 一列固定寬度居中佈局
- [css佈局1]不知寬高情況下,水平垂直居中的幾種方式CSS
- css佈局簡史與決勝未來的第四代css佈局技術CSS
- CSS 傳統佈局CSS