Can someone help me with CSS (Pictures inside)

by 2 replies
3
Hey, thanks in advance if you can help me. Here is an image from a template which I'm looking for - as you see, the web page is divided into blocks of blue and white, what code do I need to implement to successfully pull this off, myself?




Any help would be grateful, also I'm looking for the name of the specific style that's used; as in, is there a specific name to have a blocked page like that - just so I can Google it in the future for reference.


Thanks again, in advance.

Have a great day
#programming #css #inside #pictures
  • Why not just pay $9 for it and see exactly how the author did it?

    Marketing - App Builders HTML | ThemeForest

    Blocks of blue and white? using CSS background color.

    Code:
    <div class="white-box">
      hey hey hey, here comes white box
    </div>
    <div class="blue-box">
      hey hey hey, here come BLUE box - cuz blues cool
    </div>
    
    
    // and your .css file has
    
    .white-box {
       background-color: #fff;
    }
    .blue-box {
       background-color: #0000FF
    }
    • [ 1 ] Thanks
    • [1] reply
    • Thanks, I was just wondering if anyone knew how before buying it. Even though I don't need.

      Thanks a lot for the help


      Mike

Next Topics on Trending Feed