1. 程式人生 > 其它 >如何去除html程式碼標籤之間換行產生的空格

如何去除html程式碼標籤之間換行產生的空格

技術標籤:htmlcss

當使用inline-block時,HTML元素之間的空白會顯示在頁面上,為了保持程式碼的美觀,不建議使用全部寫在一行內或者影響美觀的方法。

推薦方法:在父元素上設定font-size: 0;

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        body {
            margin
: 0; padding: 0; } div { height: 41px; border-top: 4px solid red; border-bottom: 1px solid gray; } a { display: inline-block; height: 41px; text-align: center; line-height: 41px;
text-decoration: none; padding: 0px 5px; background-color: red; font-size: 14px; font-family: 楷體; } .shouye { margin-left: 200px; } .shouye:hover { background-color: gray; }
</style> </head> <body> <div> <a class="shouye" href="#">設為首頁</a> <a href="#">手機新浪網</a> <a href="#">移動客戶端</a> </div> </body> </html>

效果預覽:
在這裡插入圖片描述
修改後程式碼:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        body {
            margin: 0;
            padding: 0;
        }
        div {
            font-size: 0;/*關鍵程式碼*/
            height: 41px;
            border-top: 4px solid red;
            border-bottom: 1px solid gray;
        }
        a {
            display: inline-block;
            height: 41px;
            text-align: center;
            line-height: 41px;
            text-decoration: none;
            padding: 0px 5px;
            background-color: red;
            font-size: 14px;
            font-family: 楷體;
        }
        .shouye {
            margin-left: 200px;
        }
        .shouye:hover {
            background-color: gray;
        }
    </style>
</head>
<body>
    <div>
        <a class="shouye" href="#">設為首頁</a>
        <a href="#">手機新浪網</a>
        <a href="#">移動客戶端</a>
    </div>
</body>
</html> 

效果預覽:
在這裡插入圖片描述