如何在我的网页中调整图像?

时间:2014-03-02 00:54:15

标签: html css

我的网页如下:

enter image description here

如您所见,有两个图像:边框(右侧图像)和照片(左侧)。我想定位摄影图像,使其位于图像边框内。在您说不能创建边框之前,nope - 需要链接到Web上的特定图像。所以我试过调整设置:20px;但似乎没有任何东西允许它。

我该怎么办?

2 个答案:

答案 0 :(得分:0)

也许是这样的? 我使用了div,但你可以为img标签更改它们,或者你可以使用它们来包装元素(链接,图像,iframe,因为我不知道你是如何包含外部文件的。)

HTML:

<div class="class1">Teri</div>
<div class="class2">Mare</div>

CSS:

.class1{
background:#ccc;
width:100px;
height:100px;
position:absolute;
left:10px;
z-index:9999; /* change the stack order */
}
.class2{
background:#666;
width:100px;
height:100px;
position:absolute;
left:10px;
}

演示:http://jsfiddle.net/tSPn6/

答案 1 :(得分:-1)

您需要做的是添加<div>代码和</div>以结束代码 接下来,您需要将其添加到css <style>标记中,然后将其写为

div
{
border-style:url('image');
}

div
{
border-style: the style here;
}

我希望能帮到你