<div class="container navbar-content"> <a href="cs.php">测试</a> <a href="inquiry.php">查询</a> <a href="add.php">添加</a> <a href="List.php">查看</a> </div>将这些居中
时间: 2023-08-14 09:32:23 浏览: 159
layui自定义ajax左侧三级菜单
要将这些链接居中,可以在样式中给`.navbar-content`元素添加`text-align: center;`属性,如下所示:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>首页</title>
<style>
.navbar {
/*background: url(../images/header.png) no-repeat left top;*/
background-size: 100% 54px;
}
.navbar .navbar-content {
text-align: center;
}
.navbar .navbar-content a {
color: #ffffff;
line-height: 54px;
display: inline-block;
width: 100px;
text-align: center;
}
.navbar .navbar-content a:hover {
color: #cccccc;
}
h1 {
text-align: center;
}
</style>
</head>
<body background="images/mm.png" style="background-size: 100% 100%;background-attachment: fixed;">
<h1>宠物医院管理平台</h1>
<nav class="navbar">
<div class="container navbar-content">
<a href="cs.php">测试</a>
<a href="inquiry.php">查询</a>
<a href="add.php">添加</a>
<a href="List.php">查看</a>
</div>
</nav>
</body>
</html>
```
这样就可以使页面中的导航栏链接居中了。
阅读全文