CSS3 Interview Questions And Answers
Download CSS3 Interview Questions and Answers PDF
Prepare comprehensively for your CSS3 interview with our extensive list of 15 questions. These questions are specifically selected to challenge and enhance your knowledge in CSS3. Perfect for all proficiency levels, they are key to your interview success. Secure the free PDF to access all 15 questions and guarantee your preparation for your CSS3 interview. This guide is crucial for enhancing your readiness and self-assurance.
15 CSS3 Questions and Answers:
CSS3 Job Interview Questions Table of Contents:
1 :: What is the difference between CSS and CSS3
CSS3 is upgreaded version of CSS with new future like Selectors,Box Model, Backgrounds and Borders, Text Effects,2D/3D Transformations, Animations, Multiple Column Layout,User Interface etc
Read More2 :: List out CSS3 modules
Below are the listed major modules
► Selectors
► Box Model
► Backgrounds and Borders
► Text Effects
► 2D/3D Transformations
► Animations
► Multiple Column Layout
► User Interface
Read More► Selectors
► Box Model
► Backgrounds and Borders
► Text Effects
► 2D/3D Transformations
► Animations
► Multiple Column Layout
► User Interface
3 :: What new futures added in CSS3 for Borders and how Browser Support it?
Following border futures added
► border-radius
► box-shadow
► border-image
and all modern Browser Support it like below
Internet Explorer 9 supports border-radius and box-shadow
Firefox requires the prefix -moz- for border-image.
Chrome and Safari requires the prefix -webkit- for border-image.
Opera requires the prefix -o- for border-image.
Read More► border-radius
► box-shadow
► border-image
and all modern Browser Support it like below
Internet Explorer 9 supports border-radius and box-shadow
Firefox requires the prefix -moz- for border-image.
Chrome and Safari requires the prefix -webkit- for border-image.
Opera requires the prefix -o- for border-image.
4 :: How to create Rounded Corners using css3?
We have to creat a class like below
<style>
.roundc{
border:2px solid #ff0000;
border-radius:25px;
background:#dddddd;
width:300px;
-moz-border-radius:25px; /* Firefox */
-webkit-border-radius:25px; /* Chrome and Safari */
-o-border-radius:25px; /* Opera */
}
</style>
and we have to add this class where we want the round corner like in below div
<div class="roundc" > this is the round corner by css3 </div>
Read More<style>
.roundc{
border:2px solid #ff0000;
border-radius:25px;
background:#dddddd;
width:300px;
-moz-border-radius:25px; /* Firefox */
-webkit-border-radius:25px; /* Chrome and Safari */
-o-border-radius:25px; /* Opera */
}
</style>
and we have to add this class where we want the round corner like in below div
<div class="roundc" > this is the round corner by css3 </div>
5 :: How to create border using images by CSS3?
By using border-image: property of css3 we can create a border using images like below
.roundpcds
{
border-image:url(borderpcds.png) 30 30 round;
-moz-border-image:url(borderpcds.png) 30 30 round; /* Firefox */
-webkit-border-image:url(borderpcds.png) 30 30 round; /* Safari and Chrome */
-o-border-image:url(borderpcds.png) 30 30 round; /* Opera */
}
.stretchPcds
{
-moz-border-image:url(borderpcds.png) 30 30 stretch; /* Firefox */
-webkit-border-image:url(borderpcds.png) 30 30 stretch; /* Safari and Chrome */
-o-border-image:url(borderpcds.png) 30 30 stretch; /* Opera */
border-image:url(borderpcds.png) 30 30 stretch;
}
Read More.roundpcds
{
border-image:url(borderpcds.png) 30 30 round;
-moz-border-image:url(borderpcds.png) 30 30 round; /* Firefox */
-webkit-border-image:url(borderpcds.png) 30 30 round; /* Safari and Chrome */
-o-border-image:url(borderpcds.png) 30 30 round; /* Opera */
}
.stretchPcds
{
-moz-border-image:url(borderpcds.png) 30 30 stretch; /* Firefox */
-webkit-border-image:url(borderpcds.png) 30 30 stretch; /* Safari and Chrome */
-o-border-image:url(borderpcds.png) 30 30 stretch; /* Opera */
border-image:url(borderpcds.png) 30 30 stretch;
}
6 :: How to create Box Shadow and text Shadow using CSS3?
Like below we can create Box Shadow using CSS3 .boxshadowpcds
{
box-shadow: 10px 10px 5px #ccccc;
}
.textshadowpcds
{
text-shadow: 5px 5px 5px #FF0000;
} and then need to use these class boxshadownpcds ,textshadowpcds
Read More{
box-shadow: 10px 10px 5px #ccccc;
}
.textshadowpcds
{
text-shadow: 5px 5px 5px #FF0000;
} and then need to use these class boxshadownpcds ,textshadowpcds
7 :: What is the CSS3 The background size Property?
The background-size property specifies the size of the background image.
As we know Before CSS3, the background image size was find out by the real size of the image. In CSS3 it is possible to specify the size of the background image, which allows you to re-use background images in different ways.
.pcdsbp1
{
background:url(background.gif);
-moz-background-size:80px 60px; /* Firefox 3.6 */
background-size:80px 60px; /* or we can do background-size:100% 100%;*/
background-repeat:no-repeat;
}
Read MoreAs we know Before CSS3, the background image size was find out by the real size of the image. In CSS3 it is possible to specify the size of the background image, which allows you to re-use background images in different ways.
.pcdsbp1
{
background:url(background.gif);
-moz-background-size:80px 60px; /* Firefox 3.6 */
background-size:80px 60px; /* or we can do background-size:100% 100%;*/
background-repeat:no-repeat;
}
8 :: What is the word wrap/word wrapping in CSS3?
To Allow long words to be able to break and wrap onto the next line in css3 we used word-wrap property like below class
.wordwrappcds{word-wrap:break-word;}
Read More.wordwrappcds{word-wrap:break-word;}
9 :: What is the CSS3 animation?
When the animation is created in the @keyframe, bind it to a selector, otherwise the animation will have no effect.
Bind the animation to a selector by specifying at least these two CSS3 animation properties:
► Specify the name of the animation
► Specify the duration of the animation
Read MoreBind the animation to a selector by specifying at least these two CSS3 animation properties:
► Specify the name of the animation
► Specify the duration of the animation
10 :: What is opacity in CSS3?
Opacity is used to show or hide the html element For example 0 for hide and 1 for show
<p style="opacity: 0">Show Me</p>
<p style="opacity: 0.5">Show Me</p>
<p style="opacity: 1">Show Me</p>
Read More<p style="opacity: 0">Show Me</p>
<p style="opacity: 0.5">Show Me</p>
<p style="opacity: 1">Show Me</p>
11 :: What is the syntax of opacity in CSS3?
style="opacity:0.4;filter:alpha(opacity=40)"
Firefox uses the property opacity:x for transparency, while IE uses
filter:alpha (opacity=x).
Read MoreFirefox uses the property opacity:x for transparency, while IE uses
filter:alpha (opacity=x).
12 :: What is the syntax of word wrap in CSS3?
The general syntax word-wrap property of CSS3 is as follows:
word-wrap: normal| break-word
The default initial value is normal in the above syntax.
Read Moreword-wrap: normal| break-word
The default initial value is normal in the above syntax.
13 :: How is white-space property of CSS3 used?
Syntax for the usage of white-space Property of CSS3.
The general format of white-space Property of CSS3 is as follows:
white-space: nnormal | pre | nowrap | pre-wrap | pre-line
Let me know if you have any other query.
Read MoreThe general format of white-space Property of CSS3 is as follows:
white-space: nnormal | pre | nowrap | pre-wrap | pre-line
Let me know if you have any other query.
14 :: Explain How flexibility is achieved more in CSS3?
Flexibility achieved is in greater ratio in CSS3 because of the feature of handling multiple style sheets in CSS3 and because of the modularized approach of CSS3.
Read More15 :: Explain What are the values that can be taken by property white-space of CSS3?
The five values that can be taken by property white-space of CSS3 are normal, pre, nowrap, pre-wrap and pre-line.
Read More