来自Nu HTMl checker

时间:2016-08-22 07:19:05

标签: html

对于我要提出的每个问题,来自其他提问者的回答都是相同的。"或者,您可以在问题中包含您网页的相关部分吗?"我将提供您要求的内容来解决我的问题。请指教。

  

错误:范围内没有p元素,但看到了p结束标记。从第371行,   第111栏;到第371行,第114栏title ="">

↩   错误:范围中没有p元素,但看到了p结束标记。从第372行,   第169栏;到第372行,第172栏alt ="" />

↩   错误:看到结束标记div,但有开放元素。从行   375,第1栏;到第375行,第6列p>↩↩↩   错误:未闭合元素a。从第371行第1栏;到第371行,   第110栏315px;">↩

↩<错误:开始标记但看到了   相同类型的元素已经打开。从第377行,列   1;到第377行,第117栏315px;">↩

↩<错误:结束标记违反嵌套   规则。从第377行第1栏;至第377行,第117栏   315px;">↩

↩<致命错误:无法恢复   最后一个错误任何进一步的错误都将被忽略。从第377行开始,   第1栏;到第377行,第117栏315px;">↩

↩<

现在这里是相应的相关内容:

<div style="width: 960px;">
  <div id="leftColumn" style="float: left; width: 315px;">
    <a  href="http://homesinestrellamountain.com/11280-s-wilson-lane-goodyear-az-85338/" target="_blank" title="">
      <div id="up-1st" class="ft-3up">
        <img src="http://i102.photobucket.com/albums/m107/azhousing/11280%20S%20Wilson%20Lane%20Goodyear%20AZ%2085338_zpscxxeckxo.jpg" alt=""/>
        <p class="search-button">11280 S WILSON LANE</p>
      </div>
   </div>
   <div id="middlecolumn" style="float: left; width: 315px;">
     <a  href="http://homesinestrellamountain.com/16477-w-san-pedro-cir-goodyear-arizona-85338/" target="_blank" title="">
       <div id="up-2nd" class="ft-3up">
         <img src="http://i102.photobucket.com/albums/m107/azhousing/16477%20W%20SAN%20PEDRO%20CIR_zpsrd09l2zj.jpg" alt="" />
         <p class="search-button">16477 W SAN PEDRO CIR</p>
       </div>
     </div>

1 个答案:

答案 0 :(得分:0)

您未关闭<a> - 代码和<div>。这些只是你的错误。代码的内容是相同的。这应该有效:

<div style="width: 960px;">
  <div id="leftColumn" style="float: left; width: 315px;">
    <a href="http://homesinestrellamountain.com/11280-s-wilson-lane-goodyear-az-85338/" target="_blank" title="">
      <div id="up-1st" class="ft-3up">
        <img src="http://i102.photobucket.com/albums/m107/azhousing/11280%20S%20Wilson%20Lane%20Goodyear%20AZ%2085338_zpscxxeckxo.jpg" alt=""> 
      </div>
    </a>
    <p class="search-button">11280 S WILSON LANE</p>
  </div>
</div>
<div id="middlecolumn" style="float: left; width: 315px;">
  <a  href="http://homesinestrellamountain.com/16477-w-san-pedro-cir-goodyear-arizona-85338/" target="_blank" title="">
    <div id="up-2nd" class="ft-3up">
      <img src="http://i102.photobucket.com/albums/m107/azhousing/16477%20W%20SAN%20PEDRO%20CIR_zpsrd09l2zj.jpg" alt="">
    </div>
    <p class="search-button">16477 W SAN PEDRO CIR</p>
  </a>
</div>