gpt4 book ai didi

css - 将图标添加到 css 边框的末尾

转载 作者:太空宇宙 更新时间:2023-11-04 06:56:32 26 4
gpt4 key购买 nike

我需要在实线边框的末尾添加一个图标,并且要使该图标响应(即当边框变大/变小时,图标会保留在该行的末尾)。

第一张图片就是我现在的样子。 enter image description here

这是我的代码:

<h3>Open Enrollment</h3><img src="../img/icons/icon_OpenEnrollment.png" class="header-icon">


h3:after {
content: ' ';
display: block;
border: 1.5px solid #f1a327;
position: relative;
}

.header-icon {
float: right;
}

这就是我需要创建的。 enter image description here

最佳答案

position:relative.header-icon 类和 top:-40px and left:-10px 它有效

h3:after {
content: ' ';
display: block;
border: 1.5px solid #f1a327;
position: relative;

}

.header-icon {
position:relative;
float: right;
top:-40px;
left:-10px;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<h3>Open Enrollment</h3><img style="width:40px"src="https://cdn0.iconfinder.com/data/icons/tutor-icon-set/512/set_of_three_books-512.png" class="header-icon">

</body>
</html>

关于css - 将图标添加到 css 边框的末尾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52407765/

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