Website Developer Question:
Download Job Interview Questions and Answers PDF
Do you know what Is Webkit In CSS3? And Why Is It Used?
Answer:
Webkit is a core software component which is responsible for rendering HTML and CSS in browsers like Safari and Chrome. There are other similar rendering engines like Gecko for Mozilla, Presto for Opera, and Edge for IE.
To enable Webkit on a web page, it requires prefixing the <-webkit> keyword with CSS values.
Here is an example CSS using the Webkit feature.
.box_shadow {
-webkit-box-shadow: 0px 0px 5px 0px #ffffff;
box-shadow: 0px 0px 5px 0px #ffffff;
}
To enable Webkit on a web page, it requires prefixing the <-webkit> keyword with CSS values.
Here is an example CSS using the Webkit feature.
.box_shadow {
-webkit-box-shadow: 0px 0px 5px 0px #ffffff;
box-shadow: 0px 0px 5px 0px #ffffff;
}
Download Website Developer Interview Questions And Answers
PDF
Previous Question | Next Question |
Tell me what Are The Core Data Types Available In JavaScript? | Do you know what Is A CSS Selector? |