主要属性:
- width;
- transform;
⭐️特点:利用了CSS3的函数
效果图:
示例代码:
<!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>breakTheBox</title>
<style>
.father{
width: 100%;
height: 300px;
background-color: pink;
padding-top: 100px;
}
.child{
width: calc(100% + 1.75rem);
height: 100px;
transform: translateX(-1.25rem);
background-color: skyblue;
}
</style>
</head>
<body>
<div>
<div class="father">
<div class="child">
</div>
</div>
</div>
</body>
</html>