gpt4 book ai didi

html - css背景图片定位(负定位?)

转载 作者:太空狗 更新时间:2023-10-29 14:39:57 24 4
gpt4 key购买 nike

我正在尝试添加一个位于边框顶部的图标,将其分成两半。

这是我目前所拥有的:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
<style type="text/css">
body {
background-color:#26140C;
}

.box {
width: 800px;
margin: 0 auto;
margin-top: 40px;
padding: 10px;
border: 3px solid #A5927C;

background-color: #3D2216;
background-image: url(Contents/img/icon_neutral.png);
background-repeat: no-repeat;
background-position:10px -20px;
}
</style>
</head>
<body>
<div class="box">
<h1>This is a test!</h1>
</div>
</body>

图片并没有像我希望的那样在边界之上,而是在边界之下。

最佳答案

另一种方法是使用伪类 :after 在你的盒子后面注入(inject)一个元素。

CSS

  .box{
position:relative;
}
.box:after{
content:url(icon_neutral.png);
display:block;
position:relative;
top: -30px;
}

HTML

<body>
<div class="box">
<h1>This is a test!</h1>
</div>
</body>

关于html - css背景图片定位(负定位?),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1053950/

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