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> ...
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
Post a Comment