gpt4 book ai didi

html - CSS 样式。在链接前放一个箭头图像

转载 作者:行者123 更新时间:2023-11-28 00:58:48 24 4
gpt4 key购买 nike

链接文本右对齐。我想将箭头图像放在链接文本之前,但不想链接图像。我在帖子中放了一个打印照片的例子。

#submitYourConcern {
background: url( '/_layouts/images/grey_arrow.png' ) no-repeat right;
padding-right: 15px;
color: #4b92db;
text-align: right;
}
<div id="submitYourConcern">
<a href="/submit.aspx">Submit Your Concern</a>
</div>

enter image description here

最佳答案

您可以使用 ::before 将内容放在元素之前。

#submitYourConcern
{
background: url(/_layouts/images/grey_arrow.png) no-repeat right ;
padding-right: 15px;
color: #4b92db;
text-align: right;
}
#submitYourConcern::before {
content: ">";
display:inline-block;
}
<div id="submitYourConcern">
<a href="/submit.aspx">Submit Your Concern</a>
</div>

如果要使用图片,可以使用background-image

关于html - CSS 样式。在链接前放一个箭头图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43208518/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com