2013-02-15 3 views
0

내 바닥 글에 내 블로그에 연결된 이미지가 있습니다. 이 링크는 저작권에 넘쳐 있으며 그 이유는 모르겠습니다.바닥 글 링크 넘침

이미지에 저작권 자체에 대한 링크를 추가 한 적은 없지만 저작권에 마우스를 가져 가면 어떤 이유로 블로그에 연결됩니다. 나는 이것이 결코 전에 나에게 일어난 적이 없다고 설명 할 수 없다.

도움을 주시면 감사하겠습니다.

HTML

<footer> 
     <div class="footer"> 
      <div class="left"> 
        <img src="#" alt=""> 
       <h6>Title</h6> 
       <p></p> 
      </div> 
      <div class="middle"> 
       <p><a href="#"><img src="#" alt=""></p> 
      </div> 
      <div class="right"> 
       <p><a href="#"><img src="#" alt=""></p> 
      </div> 
     </div> 
    </footer> 

CSS

당신은 당신의 a 태그를 닫을 필요
footer { 
    width: 100%; 
    background-color: #212119; 
} 

.footer { 
    margin: 0 auto; 
    width: 960px; 
    height: 350px; 
    margin-bottom: 10px; 
    color: #474741; 
} 

.footer .left { 
    margin-top: 20px; 
    margin-left: 10px; 
    float: left; 
    width: 33%; 
    text-align: left; 
} 

.footer .left img { 
    margin-top: 40px; 
    margin-left: 10px; 
    margin-right: 10px; 
    margin-bottom: 10px; 
    float: left; 
    height: 110px; 
    width: 113px; 
} 

.footer .left h6 { 
    color: #474741; 
    margin-top: 10px; 
    margin-bottom: 10px; 
    font-size: 18px; 
    font-weight: bold; 
    font-family: arial, sans-serif; 
} 

.footer .left p { 
    margin-top: 40px; 
    font-size: 14px; 
} 

.footer .left p:last-child { 
    margin-top: -15px; 
    font-family: arial, sans-serif; 
} 

.footer .middle { 
    text-align: center; 
    margin-top: 40px; 
    float: left; 
    width: 33%; 
} 

.footer .middle p { 
    margin-top: 0px; 
} 

.footer .right { 
    text-align: center; 
    float: right; 
    width: 33%; 
} 

.footer .right p { 
    margin-top: -152px; 
} 

.copyright { 
    clear: both; 
} 

.copyright p{ 
    margin: 0 auto; 
    width: 960px; 
    color: #e8ad4f; 
    font-size: 20px; 
    margin-bottom: 10px; 
    vertical-align: top; 
} 

답변

0

...

<p><a href="#"><img src="#" alt=""></p> 

이 ...된다 ...

<p><a href="#"><img src="#" alt=""></a></p> 

그렇지 않으면 뒤에 오는 모든 내용이 링크로 묶입니다.

+0

와우, 그건 당황 스럽네. 그것이 단순한 무엇인가 이었기 때문에 기쁘다. 감사. – Angel