码迷,mamicode.com
首页 > 其他好文 > 详细

基础知识

时间:2017-08-24 19:42:34      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:ul li   abs   ext   nbsp   position   top   垂直   内容   padding   

盒子模型 content padding margin border

行内元素 a b span img input strong select label em button textarea
块级元素 div ul li dl dt dd p h1-h6 blockquote
空元素 br meta hr link input img

href 是指向网络资源所在位置 建立和当前元素(锚点)或当前文档(链接)之间的链接,用于超链接
src 是指向外部资源的位置,指向的内容将会嵌入到文档标签所在位置;在请求

 


css 实现垂直剧居中

<div class=""wrapper>
<div class="content"></div>
</div>

<style>
.wrapper{
position:relative;
width:500px;
height:500px;
background-color:#ddd;
}
.content{
position:absolute;
width:200px;
height:200px;
background-color:#eee;
top:50%;
left:50%;
margin-top:-100px;
margin-left:-100px
}
</style>

基础知识

标签:ul li   abs   ext   nbsp   position   top   垂直   内容   padding   

原文地址:http://www.cnblogs.com/xyc211/p/7424669.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!