html5 - Anchors nor ID work to reference a specific section on a page -


i've been trying use anchor tags , id's reference specific sections within page reason blank page. no matter how many different configurations try, work 1 link, , second displays blank page.

been trying <a href>, <a name> , using <div id=""> nothing seems work. ideas?

here's link , section code:

<li>   <a href="servicios.html#distro">distribución del espacio</a> </li>  <section id="distro" class="section-block replicable-content bkg-charcoal color-white no-padding-bottom">   <div class="row horizon" data-animate-in="preset:slideinrightshort;duration:1000ms;" data-threshold="0.3">     <div class="column width-5 offset-2">       <h2 class="mb-30"><a name="#distro">distribución del espacio</a></h2>     </div>   ... 

see website here

check menu option under "servicios"

btw been using href instead of name in anchor no avail.

this open page servicios.html , go anchor #distro:

<li>   <a href="servicios.html#distro">distribución del espacio</a> </li> 

this go straight anchor:

<li>      <a href="#distro">distribución del espacio</a> </li> 

make sure have 1 id distro

<section id="distro" ... > 

you can try:

 <section name="distro" ... > 

but browser first id , name. html anchors 'name' or 'id'?


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -