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. nickdclements

    What would cause columns in a blockquote?

    I tried using a blockquote within shopify, and it worked fine until I used <p> or <a> inside the blockquote, wherein it created columns.
  2. nickdclements

    why does [style.display = '']' only work with inline css?

    If you use 'inline CSS' to hide a div, you can display it with Javascript. <a href="#" onClick="document.getElementById('mydiv').style.display = '';">show</a> <div id="mydiv" style="width:100px; height:100px; border:dashed 1px #FF6600; display:none;"> </div> If you hide it with a 'CSS class/ID...
Back
Top