HTML and CSS related interview questions
1. <div id="testid" class="test-class">Test CSS</div>
#testid{
color:red;
}
.test-class{
color:blue !important;
}
What will be the color of text "Test CSS"?
1. <div id="testid" class="test-class">Test CSS</div>
#testid{
color:red;
}
.test-class{
color:blue !important;
}
What will be the color of text "Test CSS"?
Comments
Post a Comment