Do you know what Is Webkit In CSS3? And Why Is It Used?

Submitted by: Muhammad
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;
}
Submitted by: Muhammad

Read Online Website Developer Job Interview Questions And Answers