按钮怎么用flex布局啊,我虽然效果完成了但是flex布局没用到,有哪边要修改吗
相关代码:
<!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>
<style>
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
.box{
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 1000;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0,0.4);
}
.inner{
width: 50%;
background-color: #fff;
padding: 20px 20px;
border-radius:10px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
text-align: center;
}
p{
margin-bottom: 20px;
}
button{
width: 45%;
height: 28px;
background-color: gray;
color: white;
border: none;
line-height: 28px;
text-align: center;
}
</style>
</head>
<body>
<div class="box">
<div class="inner">
<p>确认要删除吗</p>
<button class="btn">确认</button>
<button>取消</button>
</div>
</div>
</body>
</html>
16
收起
正在回答
1回答
同学你好,代码实现基本没问题,建议优化:将“确定”按钮的背景颜色按照设计图设置为蓝色,并给按钮设置圆角,参考代码如下
关于按钮使用flex布局实现:首先将按钮标签放在一个div大盒子中,参考代码如下:
然后对div大盒子进行flex布局即可,参考代码如下
祝学习愉快!
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星