html – 在CSS背景图片中添加URL链接?

前端之家收集整理的这篇文章主要介绍了html – 在CSS背景图片中添加URL链接?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个CSS条目,如下所示:
.header {
    background-image: url("./images/embouchure.jpg");
    background-repeat: no-repeat;
    height:160px;
    padding-left:280px;
    padding-top:50px;
    width:470px;
    color: #eaeaea;
    border-bottom:1px solid #eaeaea;


}

如何添加该CSS中的背景图片链接

完整的CSS可以找到here,使用的html是there.

解决方法

尝试将锚定标签包裹在锚标签中并应用背景图像.

HTML:

<div class="header">
    <a href="/">
        <span class="header-title">My gray sea design</span><br />
        <span class="header-title-two">A beautiful design</span>
    </a>
</div>

CSS:

.header {
    border-bottom:1px solid #eaeaea;
}

.header a {
    display: block;
    background-image: url("./images/embouchure.jpg");
    background-repeat: no-repeat;
    height:160px;
    padding-left:280px;
    padding-top:50px;
    width:470px;
    color: #eaeaea;
}
原文链接:https://www.f2er.com/html/224544.html

猜你在找的HTML相关文章