HTML Forums | An HTML and CSS Coding Community

Welcome to HTMLForums; home of web development discussion! Please sign in or register your free account to get involved. Once registered you will be able to connect with other members, send and receive private messages, reply to topics and create your very own. Our registration process is hassle-free and takes no time at all!

Search results

  1. J

    Clicking Hidden Radio Button

    i got the following answer on sitepoint: It seems to work, but i'm unclear why the span should be a div.
  2. J

    Clicking Hidden Radio Button

    Trying to click a hidden radio button, but it's making the image go all wonky. How to fix? Everything seems normal until you click. Then the image remains wonky even after you move the mouse pointer away. The img-clip div constrains the size of the image. The radio-button click area is meant to...
  3. J

    Code-Free Templating

    I'm just sharing a tool i developed that might be helpful to others. It's a code-free, client-side templating tool, that will enable an HTML dev to display a collection of repeated items on a webpage with identical HTML, but different content. "Template" meaning there's only one copy of...
  4. J

    This valid HTML fails validation

    Fixed <div class="art-item" id="item-demo"> <p style="text-align: center;"> <a href="https://boom.org" target="_blank"> <img src="https://tinyurl.com/bwmkf8c2" alt="" /> My-Caption </a> </p> </div>
  5. J

    This valid HTML fails validation

    Look fine to me, but i'm getting unexpected warnings. Here's my code: <div class='art-item' id='item-demo'> <p> <a class='art-link' target='_blank' href='${link}'> <img class='art-img' src='${img}'> <div class='art-caption'> ${caption}...
Back
Top