css中常用的几种自适应布局

更新时间:2023-05-29 18:56:33 阅读: 评论:0

css中常⽤的⼏种⾃适应布局⼀、⽔平居中(使⽤text-align+inline-block)
代码:
<!DOCTYPE html>
<html>
<head>
<meta chart="utf-8">
<style>
.parent{
text-align:center;
background:red;
width:200px;
height:200px;
}
.child{
display:inline-block;
background:yellow;
width:100px;
height:100px;
}
</style>
</head>
<body>
<div class="parent">
<div class="child">
argumentative
金山翻译软件</div>
</div>
</body>
</html>
运⾏结果:
⼆、垂直居中(使⽤table-cell+vertical-align)
代码:
<style>
.parent{
display:table-cell;
vertical-align:middle;
background:red;
width:200px;
height:200px;
}
.child{
display:inline-block;significance
background:yellow;
width:100px;
height:100px;
}
</style>
</head>
<body>
<div class="parent">
<div class="child">
</div>
</div>
</body>
</html>
运⾏效果:
luckyguy
三、⽔平垂直居中(使⽤text-align+inline-block+table-cell+vetical-align)代码:
<style>
.parent{
text-align:center;
display:table-cell;
vertical-align:middle;
ctf是什么意思background:red;
width:200px;
height:200px;
}
.child{
display:inline-block;
background:yellow;
width:100px;
height:100px;
}
</style>
</head>
<body>
<div class="parent">
<div class="child">
</div>
freestyle是什么意思
</div>
</body>
</html>
运⾏效果:
四、多列布局
(1)定宽+⾃适应(使⽤float+margin)代码:
<style>
.left{
background-color:red;
width:100px;
float:left;
高考英语作文常用句型
position:relative;
}
.rightfix{
background-color:blue;法硕考研培训
float:right;
margin-left:-100px;
width:100%;
}
.right{
margin-left:120px;
}
</style>
</head>
<body>
<div class="left">left</div>
<div class="rightfix">
<div class="right">
<p>right</p>
<p>right</p>exact
</div>
</div>
</body>
</html>
运⾏结果:
(2)两列定宽+⼀列⾃适应(使⽤float+overflow)代码:
<style>
.left{
background-color:red;
}
.center{
background-color:yellow;
}
.
left,.center{compod
width:100px;
float:left;
margin-right:20px;
}
.right{
overflow:hidden;
background-color:blue;
}
</style>
</head>
<body>
<div class="left">left</div>
<div class="center">center</div>
<div class="right"><p>right</p><p>right</p></div>
</body>
</html>
运⾏结果:
(3) 不定宽+⾃适应(使⽤float+overflow)代码:

本文发布于:2023-05-29 18:56:33,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/78/808428.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:高考   适应   软件
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图