首頁  >  文章  >  web前端  >  詳解img[src=""] img無路徑情況下,灰色邊框移除解決方法

詳解img[src=""] img無路徑情況下,灰色邊框移除解決方法

高洛峰
高洛峰原創
2017-03-28 10:25:224571瀏覽

img[src=""]  img標籤無路徑情況下,灰色邊框移除解決方案

1.Js解決方法

<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
    <img src="error.jpg" onerror="whenError(this)">
    </body>
    <script>
    function whenError(a){
        a.onerror=null;
        a.src='path_default.jpg';
        console.log('图片出错的时候调用默认的图片');
    }
    </script>
</html>

2.絕對定位聚焦解決方案

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title>absolute聚焦解决方案</title>
    </head>

    <body>
        <p class="container-img">
            <img class="common-icon login-icon" src="" width="38" height="38">
        </p>

    </body>
    <style type="text/css">
        .container-img {
            position: relative;
            display: inline-block;
            width: 36px;
            height: 36px;
            overflow: hidden;
            
        }
        .container-img img {
            position: absolute;
            top: -1px;
            right: -1px;
            background: url(img/common-icon.png) no-repeat;
            background-position: 0px 1px;
        }
    </style>

</html>

3.margin聚焦解決方案

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>margin聚焦解决方案</title>
    </head>

    <body>
        <p class="container-img">
            <img class="common-icon login-icon"  src="" width="38" height="38">
        </p>

    </body>
    <style type="text/css">
        .container-img {
            display: inline-block;
            width: 36px;
            height: 36px;
            overflow: hidden;
        }
        .common-icon {
            display: inline-block;
            background: url(img/common-icon.png) no-repeat;
            background-position: 0px 1px;
            margin: -1px;
        }
    </style>
</html>

4.css隱藏

img[src=""]{
opacity: 0;
}

以上是詳解img[src=""] img無路徑情況下,灰色邊框移除解決方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn