box-sizing是css3的新属性吗
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了box-sizing是css3的新属性吗相关的知识,希望对你有一定的参考价值。
参考技术A 是的,针对于div盒子中的border,padding属性,使这些属性定义的宽度自动向内减去,免去了需要重新数字计算div尺寸的麻烦。使用后,不论如何改变div盒子内border和padding属性的尺寸,div盒子的占位大小都不会改变。 参考技术B CSS3 box-sizing 属性box-sizing 属性允许你以某种方式定义某些元素,以适应指定区域。
例如,假如您需要并排放置两个带边框的框,可通过将 box-sizing 设置为 "border-box"。这可令浏览器呈现出带有指定宽度和高度的框,并把边框和内边距放入框中。
CSS3的新特性,怪异盒子,CSS3过渡,进度条制作。
CSS3的新特性
CSS盒子模型
-
怪异盒子
-
div width: 200px; height: 200px; background-color: pink; border: 1px solid red; /* border+padding+contter */ /* box-sizing: border-box; */ /* 怪异盒子 */ box-sizing: border-box; /* 他的宽度就是width */
-
前提是padding和boeder不会超过width
CSS滤镜的filter:burl(15px),width:calc(100%-30px)函数
CSS过渡(重点)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="iconfont/demo.css">
<style>
div
width: 200px;
height: 100px;
background-color: pink;
border: 1px solid red;
/* transition: 要过渡的属性、花费的时间、运动曲线、何时开始; */
/* 谁想过渡就给谁加 */
/* 如果想让属性值都发生变化,只需要把ALL的值改为属性值 */
transition: width 1s, height .5s;
div:hover
width: 400px;
height: 200px;
</style>
</head>
<body>
<div>
</div>
</body>
</html>
进度条操作
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="iconfont/demo.css">
<style>
.bar
width: 150px;
height: 15px;
border: 1px solid red;
border-radius: 7px;
padding: 1px;
.bar_in
width: 50%;
height: 100%;
background-color: red;
border-radius: 7px;
transition: width .5s;
.bar:hover .bar_in
width: 100%;
</style>
</head>
<body>
<div class="bar">
<div class="bar_in"></div>
</div>
</body>
</html>
以上是关于box-sizing是css3的新属性吗的主要内容,如果未能解决你的问题,请参考以下文章