以下是我尝试完成的示例:http://prntscr.com/8idhoz
正如你所看到的,我试图在div的顶线上获得一张图片 - 我已经设法通过使用position: absolute
来实现这一目标,但还有另一种方式吗?< / p>
这是我的代码:
<div class="box">
<br>
<img src="image.png" style="position: absolute; top: 185px; left: 690px;" />
<h2>Heading</h2>
.box {
box-shadow: 0px 3px 12px 2px #000;
}
答案 0 :(得分:1)
应该有效:)
$x("//quicklook/sell_orders/order [contains(./station_name, \'Jita\') and (not(preceding-sibling::order/price <= price ) and not(following-sibling::order/price < price))] ")
.box {
margin-top:100px;
box-shadow: 0px 3px 12px 2px #000;
}
img{
width: 50px;
margin-left: auto;
margin-top: -50px;
margin-right: auto;
display: block;
}