简单的标题导航案例1:
渲染
代码
<!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>
</head>
<style>
/* text-decoration: none; 去掉a标签的下划线
display: inline-block; 行内块
*/
a {
text-decoration: none;
display: inline-block;
width: 80px;
height: 30px;
background: red;
text-align: center;
line-height: 30px;
color: white;
}
</style>
<body>
<a href="#">导航1</a>
<a href=