JSFiddle - React, Tailwind, and code Playground

by ahallicks

HTML

<html>
    <body>
        <div id="container">
            <!--many divs before this but I am showing the relevant one-->
          <div id="imgs">  
              <form action="a.html">
              <input type="image">
              </form>
              <form action="a.html">
              <input type="image">
              </form>
              <form action="a.html">
              <input type="image">
              </form>
              <form action="a.html">
              <input type="image">
              </form>
              <form action="a.html">
              <input type="image">
              </form>

          </div>  
            
        </div>
    </body>
</html>

CSS

#imgs {
    border: 1px solid #000;
    float: left;
}
#imgs form {
    float: left;
}
#imgs input {
    display: inline;
    float: left;
    margin: 5px;
}