效果图:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
.nav-container {
display: flex;
height: 90px;
line-height: 90px;
font-size: 32px;
}
.nav-left {
color: #f00;
}
.nav-title {
flex: 1;
text-align: center;
background-color: #00f;
}
.nav-right {
color: #0f0;
}
</style>
</head>
<body>
<div class="nav-container">
<div class="nav-left">左侧</div>
<div class="nav-title">标题</div>
<div class="nav-right">右侧</div>
</div>
</body>
</html>