1 Star 0 Fork 0

一路踩红/interview

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
自适应布局.html 1.61 KB
一键复制 编辑 原始数据 按行查看 历史
一路踩红 提交于 2020-01-01 22:19 . yuan
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>自适应布局</title>
<style>
html,body{
height: 100%;
}
body{
margin: 0;
padding: 15px;
box-sizing: border-box;
display: flex;
flex-direction: column;
}
header{
height: 80px;
margin-bottom: 15px;
border: 1px solid #080;
padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.input{
align-self: flex-end;
}
.main{
flex: 1;
display: flex;
}
footer{
border: 1px solid #000;
text-align: center;
margin-top: 15px;
}
.main>.aside{
width: 200px;
margin-left: 20px;
}
.main>.aside>div{
border: 1px solid red;
}
.main>.content{
flex: 1;
border: 1px solid blue;
}
</style>
</head>
<body>
<header>
<img src="./logo.png" alt="logo" width="50px">
<input class="input" type="text" placeholder="请输入用户名">
</header>
<div class="main">
<div class="content">
content
</div>
<div class="aside">
<div>aside</div>
</div>
</div>
<footer>
footer
</footer>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/a13078253870/interview.git
[email protected]:a13078253870/interview.git
a13078253870
interview
interview
master

搜索帮助