麪包屑實例css
inline
兼容IE7inline-block
最低只能兼容至IE8代碼html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>測試麪包屑</title>
<style> .content { border-bottom: 2px solid #ccccff; } .h2 { margin-bottom: -2px; /* 使得兩條線重疊 */ border-bottom: 2px solid #ff7800; display: inline; /* inline和inline-block效果相同,inline-block不兼容IE7,inline兼容IE7 */ } </style>
</head>
<body>
<div class="content">
<h2 class="h2">
測試麪包屑
</h2>
</div>
</body>
</html>
複製代碼
效果圖測試