css麪包屑實例

  • 麪包屑實例css

    • inline兼容IE7
    • inline-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>
複製代碼

效果圖測試

相關文章
相關標籤/搜索