这是我的代码:我想吧块里面的块居中,可试了很多方法不行,求大佬解答
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
.fl{
width: 80px;
height: 50px;
background-color: royalblue;
float: left;
margin-right: 5px;
text-align: center;
line-height: 50px;
color: white;
}
.fe{
width:1500px;
height: 50px;
background-color: skyblue;
}
</style>
</head>
<body>
<div class="fe">
<div class="fl">首页</div>
<div class="fl">简介</div>
<div class="fl">活动</div>
<div class="fl">商品</div>
<div class="fl">男士</div>
<div class="fl">女士</div>
<div class="fl" style="background-color: orange; color: black;">儿童</div>
</div>
</body>
</html>
