Css3
Css3
What is Css3? well I can go back to my original metaphor of the house! If we think about the web like a house and Html5 is the frame the walls, roof and floor. than Css3 is going to be the wallpaper or paint the carpets and the drapers the coloring of the applainces in the home css is what adds style!
So how does it work? well to put it simply Css is used by selecting the sections specified with the html. Lets say for example if we have something like this.
<h1> this is my header </h1>
Well this is going to render just a black header on a white background (assuming that you have done nothing to your page stlying)
so now you want to make this header red instead? well we already have the h1 so with css which will look something like this
h1 {
color: red;
}
With that being done we now will get a header that is red like this.
So that is a very basic overview of what css3 is and how it works later on we will take a deeper look into how it work and more complex things that can be done with it.
If you'd like to join the community and make your own posts on here and share your experiences Reach to me VIA social media or Email and I'd be more than happy to feature your writings!
Share this post.
I am a web developer documenting my experiences with learning front end web development.
View posts