22

我一直在网上搜索,但找不到答案。是否可以在图像上/在图像中覆盖或嵌入引导按钮?如果是这样,怎么做?

我有一个图像,我想在上面覆盖一个引导按钮,这样它看起来就像嵌入在图像中。我希望按钮上有一个动态标签(例如某人的名字)。

4

1 回答 1

32

Stano answered the question for me!

"...yes the button can be positioned above the image tag, for example like this: http://jsfiddle.net/ubWuX"

HTML:

<div id="img_container">
    <img src="http://jsfiddle.net/img/initializing.png"/>
    <button class="button"> click here </button>
</div>

CSS:

#img_container {
    position:relative;
    display:inline-block;
    text-align:center;
    border:1px solid red;
}

.button {
    position:absolute;
    bottom:10px;
    right:10px;
    width:100px;
    height:30px;
}
于 2013-05-17T20:35:30.200 回答