css:box-sizing使用教程

本文介绍了css3中的box-sizing属性,在这之前读者需要预备知识width的范围。

浏览器的支持情况

Browser Suppored Notes
Internet Explorer Yes version 8.0
Mozilla Firefox Yes 29.0 2.0 -moz-
chrome Yes 10.0 4.0 -webkit-
opera Yes version 9.5
Safari Yes 5.1 3.2 -webkit-

box-sizing属性

box-sizing属性可以有三个值:content-box(defalut),border-box属性。

  1. content-box,border和padding不计算入width之内。
  2. border-box,border和padding计算入width之内。

<style>

div{

width:100px;

height:100px;

border:20px solid yellow;

padding:20px;

background:green;

background-clip:content-box;

}

.content-box{

box-sizing:content-box;

}

.border-box{

box-sizing:border-box;

}

</style>View Code

相关推荐
木木黄木木21 小时前
HTML5图片裁剪工具实现详解
前端·html·html5
木木黄木木1 天前
HTML5重力球动画实现详解
前端·html·html5
木木黄木木1 天前
html5炫酷图片悬停效果实现详解
前端·html·html5
自动花钱机1 天前
WebUI问题总结
前端·javascript·bootstrap·css3·html5
-代号95272 天前
【JavaScript】十四、轮播图
javascript·css·css3
Enti7c2 天前
HTML5和CSS3的一些特性
开发语言·css3
木木黄木木2 天前
HTML5手写签名板项目实战教程
前端·html·html5
自动花钱机2 天前
ESLint语法报错
前端·javascript·vue.js·css3·html5
DarkBule_3 天前
零基础驯服GitHub Pages
css·学习·html·github·html5·web
Li_na_na013 天前
解决安卓手机WebView无法直接预览PDF的问题(使用PDF.js方案)
android·pdf·uni-app·html5