DEV Community

Cover image for REALISTIC CSS ART HACKS
ellie-html
ellie-html

Posted on

REALISTIC CSS ART HACKS

The secrets of creating realistic CSS art, it's simple I promise!

I am going to show you how easy it is to make Realistic CSS Art using a simple worked example. CSS Art can be a really fun way to practice your CSS skills and knowledge so I definitely recommend having a go!

CHOOSING AN OBJECT

When selecting the object you want to draw you don't want the shape to be too complex. You need to break the object down into a few simple shapes, these simple shapes will be your divs.

Alt Text

TRACE YOUR IMAGE

After you have decided on the object and how you are going to break it down, it's time to start coding. To make your life 100% easier I recommend creating a container for all your divs and setting the object you are drawing as your background image so you can "trace" it. This makes positions and getting proportions correct much easier. Putting them in a container will also help with positioning.



.container {
    width: 700px; /* size of container */
    height: 700px;
    background-image: url(https://cdn.huntoffice.co.uk/images/D/can-of-coke.jpg); /* insert image to trace */
    background-size: 700px; /* you may need to play around with the sizing to fit container */
    background-repeat: no-repeat;
    border: 10px solid black;  /* so you can see your canavas */
 position: relative; /* important for positioning*/
}

CREATING YOUR SHAPED DIVS

Trace each shape by setting each div to have a random background color and opacity 0.5. This way you can see what you are doing. See below.

Alt Text

.top {
    /* size */
    width: 55%;
    height: 2.5%;
    /* position */
    position: absolute;
    left: 24%;
    top: 0.3%;
    /* shape */
    border-radius: 20%;
    /* to help you trace - will remove */
    background-color: green;
    opacity: 0.5;    
}

There are numerous ways you can get the shape you are looking for. I have linked some resources that will easily teach you how to create different shapes.

Below I have completed the shapes for the coke can using the above resources.

Alt Text



.top {
    /* size */
    width: 55%;
    height: 2.5%;
    /* position */
    position: absolute;
    left: 24%;
    top: 0.3%;
    /* shape */
    border-radius: 20%;
    /* to help you trace - will remove */
    background-color: green;
    opacity: 0.5;    
}



.middle:before {
    content: "";
    /* size */
    width: 95%;
    height: 12%;
    /* position */
    position: absolute;
    left: 2%;
    top: -12%; 
    /* shape */
    clip-path: polygon(8% 0%, 91% 0%, 100% 100%, 0% 100%);
    /* to help you trace - will remove */
    background: blue; 
    opacity: 0.8;
}


.middle {
     /* size */
    width: 67%;
    height: 85%;
 /* position */
    position: absolute;
    left: 18%;
    top: 9.5vh; 
     /* shape */
    border-radius: 2% 2% 50% 50% / 49% 50% 7% 7%;
     /* to help you trace - will remove */
    background: rgb(16, 162, 53);
    opacity: 0.5;
}

.base {
    /* size */
    width: 67%;
    height: 5%;
    /* position */
    position: absolute;
    left: 5.4vw;
    top: 91%;
    /* shape */
    border-radius: 0% 1% 50% 50% / 49% 50% 57% 57%;
    /* to help you trace - will remove */
    background: blue;
    opacity: 0.5;
}


.base:before {
    content: "";
      /* size */
    width: 90%;
    height: 110%;
     /* position */
    position: absolute;
    left: 5%;
    top: 50%; 
    /* shape */
 border-radius: 50%;
 clip-path: polygon(0 0, 100% 1%, 90% 100%, 10% 100%);
 /* to help you trace - will remove */
   background: red;
   opacity: 0.5;
}

PICKING THE RIGHT COLORS

Alt Text

I have a very simple yet effective hack to get the right colors for your image - yes an image color picker:

https://imagecolorpicker.com/en/

As you can see from the main Coca-Cola image we are working (above) there is a slight gradient (like with most objects). Getting this gradient correct is key to making the object looking real! Use the image color tool I linked above and this CSS Gradient Generator to get the perfect gradient.

https://cssgradient.io/

To recap - using the color picking tool individually select each color in the gradient from the original image and then add it to the gradient generator to create the perfect color in CSS. Add this code to your shaped divs and viola!

Alt Text

example:

.middle {
     /* size */
    width: 67%;
    height: 85%;
 /* position */
    position: absolute;
    left: 18%;
    top: 9.5vh; 
    z-index: 6;
     /* shape */
    border-radius: 2% 2% 50% 50% / 49% 50% 7% 7%;
     /* color */
     background: linear-gradient(90deg, rgba(162,16,33,1) 0%, rgba(219,33,40,1) 10%, rgba(194,33,39,1) 22%, rgba(232,37,41,1) 31%, rgba(241,79,82,1) 42%, rgba(199,34,41,1) 56%, rgba(240,68,66,1) 71%, rgba(227,34,37,1) 79%, rgba(179,30,34,1) 88%, rgba(148,30,36,1) 100%);
}

BRINGING THE IMAGE TO LIFE USING SHADOWS/BORDERS

Adding borders and shading using box-shadow will really bring your image to life making it look more 3D. I suggest using this site to generate box shadows quickly:

https://www.cssmatic.com/box-shadow

Alt Text

Here I have added shadows and borders and as you can see the shape looks more defined and 3D.

Now you can go ahead and add whatever details you like, for me, I just added an SVG logo on top and this worked quite effectively. Once you have the shape you could also play around with different colors to make different soft drinks!

FINAL OUTCOME
Alt Text

Hopefully, I have explained how I break it down so you can make your own CSSobjects. I honestly love doing this and it has 100% helped improved my everyday CSS skills.

Disclaimer: Please be aware I am not an expert and I just do this for fun. This is a very simple example for the purpose of this tutorial. If you need any help or would like to see a more complicated object break down, please let me know on Twitter - @ellie_html

Top comments (14)

Collapse
 
conermurphy profile image
Coner Murphy

Love the breakdown Ellie, would love to see more; especially the code behind the art. I like seeing the code and methods used by someone who is a lot better at CSS than me, it's great for learning.

Also, do you consider making your CSS art responsive? Would be curious to see how that would be implemented for an object like this using clip paths and such.

Collapse
 
saurabhdaware profile image
Saurabh Daware 🌻

whaattt🤯🤯🤯🤯 This is sooooooooo cooool!!! 😭😭🎉

Collapse
 
jckodel_96 profile image
J.C.Ködel

The art of using a fork to nail a nail on a wall... Why use a simple SVG while you can do a much harder work using CSS?

Collapse
 
clockwerkz profile image
Carlos

It's about talent, not the tool.

Collapse
 
trippymonk profile image
Blake Stansell

Yes, God forbid someone who enjoys CSS push herself with more in depth projects...

Let's all just do the easy way.

Collapse
 
sparzipan profile image
Ally

It's about experimenting and using a medium that you enjoy. In the same way an artist might choose charcoal over watercolour. Ellie enjoys using CSS to create art.

Collapse
 
adam_cyclones profile image
Adam Crockett 🌀 • Edited

I agree to some extent, SVG was indeed designed for vector graphics, and certainly has interoperability with JS and html due to its XML nature, thus making it the perfect way to go for non raster works of art. You are not wrong.
But at the same time you have to admit this is impressive, I know I would go the easy route because that is what my job entails. Do this in hand written GLSL and im sure you might get the same buzz, its not easy and thats why people do it for funzies.

Collapse
 
pozda profile image
Ivan Pozderac

So, it seems like same concept I got on drawing things, just separate whatever you want to draw into easy geometric shapes (circles, triangles, squares, parallelograms etc..) then combine them and last step is to go wild with shades/coloring.

Great presentation and easy to understand! I saw some other of your CSS-art, very creative way of showing CSS mastery!

Collapse
 
clockwerkz profile image
Carlos

Love this breakdown, thank you for taking the time to talk about your process!

Collapse
 
chirine_br profile image
Chirine |

It's thanks to you that I discovered css art, thank you very much for your article ! I'm going to practice my first css art today :)

Collapse
 
favouritejome profile image
Favourite Jome

Thanks alot for the tips and tricks

Collapse
 
robertgroves profile image
Robert Groves

Love it! Thank you for sharing and walking through your process.

Collapse
 
vagoel profile image
Varun • Edited

You have provided a new dimension to CSS and learning the way you chunked the problem provide confidence to many like me -I can do it as well !!

Thanks for this amazing post Ellie !

Collapse
 
ben profile image
Ben Halpern

Wow