0

我已将 img 与代码放在同一个文件夹中,并在代码“adHere.jpg”中正确拼写了它,所以我知道这不是问题,但它可能是我放入链接的格式。

因此,如果还没有到期,让我告诉你。

 <!--Side Bar Code -->
<div class="sidebar">
  <p><a href="">Home Page</a></p>
  <p><a href="">About Me</a></p>
  <p><a href="">Behind the scenes</a></p>
  <p><a href="">Etc.</a></p>
  <img href="adHere.jpg" width="750" height="450"> 
</div>

这是我的代码在 CSS 中的样子:

.sidebar img {border:solid 1px;
      position:relative;
      opacity: 1;}

以下是它的渲染方式:http: //i.imgur.com/PECdT8M.png

4

3 回答 3

1

img 的源属性src不是href

于 2013-02-01T23:07:07.173 回答
1

图像源的正确属性是src,不是href。它应该是:

<img src="adHere.jpg" width="750" height="450"> 
于 2013-02-01T23:07:36.003 回答
0

试试这个代码:

 <!--Side Bar Code -->
<div class="sidebar">
  <p><a href="">Home Page</a></p>
  <p><a href="">About Me</a></p>
  <p><a href="">Behind the scenes</a></p>
  <p><a href="">Etc.</a></p>
  <img src="adHere.jpg" width="750" height="450"> 
</div>

CSS 可以保持不变。

于 2013-02-01T23:20:38.690 回答