FOLLOW US ON TWITTER



FOLLOW US



img/blogimg/css3.jpg


@coder 1019

CSS3 INHERITANCE


2021-11-17 00:24 · 2 min read

In CSS3 Inheritance is used to inherit the CSS property be the Child element from its parent element. separated by a colon.
 

Inheritance

If we apply some CSS properties on the parent elements then the child elements inherit most of the properties of their parent elements, unless some CSS rules override those properties. The property in which a child element inherits its parent element's CSS properties is called inheritance.

 

<style>
/*parent element*/
.parent-tdb{
color:green;
font-size:20px;
}
/*child element*/
.child-tdb{
font-size:10px
}
</style>


Here in the above code the child class "child-tdb" inherit the color property but not the font-size (override) CSS property from its parent element

<head>
<style>
.parent-tdb{
color:green;
font-size:20px;
}
.child-tdb{
font-size:10px
}
</style>
</head>

<body>
<div class="parent-tdb">TDB Tutorials
<h1 class="child-tdb">
This is a child class</h1>
</div>

</body>

 

 

TAGS:






POST COMMENTS
No Comment

Please login to post comment




POPULAR POSTS

best free web hosting services...
what is new in miui 11?...
free website ssl security using cloudfla...
do you want to make money online?...
CSS3 @IMPORT RULES...
What is HTML Anchor Tag and Hyperlinks?...
CSS3 RESPONSIVE UI...
How to host a web page in 10 minutes....
Tables HTML...
CSS3 FUNCTIONS...
How to use CSS3 Overflow Property?...
CSS3 FILTERS...


RECENT COMMENTS

2022-03-05 11:05
By coder on XAMPP - MySQL shutdown unexpectedly | How to fix MySQL crash unexpectedly
2021-10-12 12:34
By abnongoke on do you want to make money online?
2021-10-12 12:34
By abnongoke on how to get a free website domain name?
2021-10-12 12:34
By solar panel for shed on what is new in miui 11?
2021-10-12 12:34
By solar panel for shed on best free web hosting services
2021-10-12 12:34
By amos tanui on free website ssl security using cloudflare


SOCIAL SHARE



FOLLOW US ON TWITTER



FOLLOW US ON FACEBOOK



FOLLOW US







Recent Blogs



Contact Us

Subscribe Our News-Letter



Kashipur, 244713
Uttarakhand, India



© blog.theprodevelopers.com 2024. All Rights Reserved. Powered by Pro Developer