gpt4 book ai didi

html - CSS 定位 HTML 图标

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

这是一个小问题。我试过摆弄它,但没有运气。所以基本上我试图在中心但在栏的末尾获得这个小图标:

http://puu.sh/1u4SI

但是,如果我放入 CSS top: 5px;,它将显示为:http://puu.sh/1u4T1

代码是这样的:

 <style>
a.news-item, a.box-link {
display: block;
padding: 5px;
margin: 0 0 2px -5px;
background: #E9E9E9;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
color: #8C8C8C;
text-decoration: none;
font-weight: normal;
}

a.news-item {
width: 100%;
height: 36px;
color: #8C8C8C;
}


a.box-link {
width: 230px;
padding: 5px;
height: 24px;
overflow: hidden;
color: #8C8C8C;
}

a.news-item span.title {
font-size: 18px;
}


a.news-item:last-child, a.box-link:last-child {
margin: 0 0 0 -3px;
}

a.news-item:hover, a.box-link:hover {
background: #E2E2E2;
}

.pane .delete {
position: absolute;
right: 28px;
top: 5px;
cursor: pointer;
}

.pane {
padding: 3px;
}
</style>

<script type="text/javascript">
$(document).ready(function(){
$(".pane .delete").click(function(){
$(this).parents(".pane").animate({
opacity: 0
}, 'slow', function(){
$(this).slideUp();
});
});

});
</script>


<h2>Topher's Articles</h2>

<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p><br />


<div class="pane">
<img src="../real/_lib/_image/minus.png" alt="delete" class="delete" />
<a class="news-item" href="#/media/<?php echo $row['id'] ?>.<?php echo str_replace(" ", "-", $row['news_title']); ?>">
<span class="title"><p><?php echo $row['news_title'] ?> <font size="2"> &raquo; <?php echo $row['news_date'] ?></font></p></span>
</a>
</div>

</body>
</html>

最佳答案

您是否尝试设置 padding-top而不是 top

关于html - CSS 定位 HTML 图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13549718/

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