Top 50 CSS & CSS3 Interview Questions & Answers
Top 50 CSS & CSS3 Interview Questions & Answers
Top 50 CSS & CSS3 Interview Questions & Answers
com/
The full form of CSS is Cascading Style Sheets. It is a styling language which is simple enough
for HTML elements. It is popular in web designing, and its application is common in XHTML
also.
Standard Generalized Markup Language marked the beginning of style sheets in 1980s.
CSS 1
CSS 2
CSS 2.1
CSS 3
CSS 4
Limitations are:
1/9
https://career.guru99.com/
Advantages are:
Bandwidth
Site-wide consistency
Page reformatting
Accessibility
Content separated from presentation
It is a pre-planned libraries, which allows easier and more standards-compliant webpage styling,
using CSS language.
The margin-left and margin-right properties can be set to some explicit value:
[crayon-5f2d3ac4a1056148982623/]
In this case, the left and right margins will be each, five ems wide since they split up the ten ems
left over from (40em-30em). It was unnecessary for setting up an explicit width for the BODY
element; it was done here for simplicity.
Inline: Style attribute can be used to have CSS applied HTML elements.
Embedded: The Head element can have a Style element within which the code can be
placed.
Linked/ Imported: CSS can be placed in an external file and linked via link element.
One file can be used to control multiple documents having different styles.
Multiple HTML elements can have many documents, which can have classes.
2/9
https://career.guru99.com/
To group styles in composite situations, methods as selector and grouping are used.
Demerits:
A string equivalent of HTML elements by which declarations or a set of it, is declared and is a
link that can be referred for linking HTML and Style sheet is CSS selector.
The design and customization of documents are rendered by media. By applying media control
over the external style sheets, they can be retrieved and used by loading it from the network.
While physical tags are also referred to as presentational mark-up, logical tags are
useless for appearances.
Physical tags are newer versions while logical tags are old and concentrate on content.
While HTML provides easy structure method, it lacks styling, unlike Style sheets. Moreover,
style sheets have better browser capabilities and formatting options.
3/9
https://career.guru99.com/
Although, there are no case-sensitivity of CSS, nevertheless font families, URL’s of images, etc
is. Only when XML declarations along with XHTML DOCTYPE are being used on the page,
CSS is case -sensitive.
A catalog of directions within braces consisting of property, colon and value is called declaration
block.
e.g.: [property 1: value 3]
They are:
Font-style
Font-variant
Font-weight
Font-size/line-height
Font-family
Caption
Icon
Importing enables combining external sheets to be inserted in many sheets. Different files and
sheets can be used to have different functions. Syntax:
Selectors that are unique to a specific style, are called CLASS selectors. Declaration of style
and association with HTML can be made through this. Syntax:
Classname
it can be A-Z, a-z or digits.
.top {font: 14em ;}, class selector
this class is associated with element
4/9
https://career.guru99.com/
While an overall block is given to class selector, ID selector prefers only a single element
differing from other elements. In other words, ID are uniques while classes are not. Its possible
that an element has both class and ID.
Pseudo-elements are used to add special effects to some selectors. CSS in used to apply
styles in HTML mark-up. In some cases when extra mark-up or styling is not possible for the
document, then there is a feature available in CSS known as pseudo-elements. It will allow
extra mark-up to the document without disturbing the actual document.
Control statements and external style sheets are used to overrule underlining Hyperlinks.
E.g.:
[crayon-5f2d3ac4a105d943176562/]
26. What happens if 100% width is used along with floats all across the page?
While making the float declaration, 1 pixel is added every time it is used in the form of the
border, and even more float is allowed thereafter.
27. Can default property value be restored through CSS? If yes, how?
In CSS, you cannot revert back to old values due to lack of default values. The property can be
re- declared to get the default property.
They are:
5/9
https://career.guru99.com/
29. What is CSS Box Model and what are its elements?
This box defines design and layout of elements of CSS. The elements are:
Selector used to select special occurrences of an element is called contextual selector. A space
separates the individual selectors. Only the last element of the pattern is addressed in this kind
of selector. For e.g.: TD P TEXT {color: blue}
When a set of images is collaborated into one image, it is known as ‘Image Sprites’. As the
loading every image on a webpage consumes time, using image sprites lessens the time taken
and gives information quickly.
CSS coding:
[crayon-5f2d3ac4a1061258686686/]
In this case, only the part needed is used. The user can save substantial margin and time
through this.
Grouping: Selectors can be grouped having the same values of property and the code be
reduced.
E.g. :
[crayon-5f2d3ac4a1062779172901/]
6/9
https://career.guru99.com/
It can be seen from the code that every element shares the same property. Rewriting can be
avoided by writing each selector separated by a comma.
Height
Max-height
Max-width
Min-height
Min-width
Width
By float property, the image can be moved to the right or the left along with the text to be
wrapped around it. Elements before this property is applied do not change their properties.
Overlapping may occur while using CSS for positioning HTML elements. Z index helps in
specifying the overlapping element. It is a number which can be positive or negative, the default
value being zero.
In case the component fails, it will continue to work properly in the presence of a graceful
degradation. The latest browser application is used when a webpage is designed. As it is not
available to everyone, there is a basic functionality, which enables its use to a wider audience.
In case the image is unavailable for viewing, text is shown with the alt tag.
It’s an alternative to graceful degradation, which concentrates on the matter of the web. The
functionality is same, but it provides an extra edge to users having the latest bandwidth. It has
been into prominent use recently with mobile internet connections expanding their base.
7/9
https://career.guru99.com/
As images being inline elements are treated same as texts, so there is a gap left, which can be
removed by:
CSS
[crayon-5f2d3ac4a1065401161951/]
@import is preferred only at the top, to avoid any overriding rules. Generally, ranking order is
followed in most programming languages such as Java, Modula, etc. In C, the # is a prominent
example of a @import being at the top.
42. Which among the following is more precedent: CSS properties or HTML procedures?
CSS is more precedent over HTML procedures. Browsers, which do not have CSS support,
display HTML attributes.
The Inline style in a CSS is used to add up styling to individual HTML elements.
A style, that helps in influencing CSS. E.g. FONT. They have corresponding values or
properties within them, like FONT has different style like bold, italic etc.
Alternate Style Sheets allows the user to select the style in which the page is displayed using
the view>page style menu. Through Alternate Style Sheet, user can see a multiple version of
the page on their needs and preferences.
8/9
https://career.guru99.com/
Rule, which is applicable in the entire sheet and not partly, is known as at-rule. It is preceded by
@ followed by A-Z, a-z or 0-9.
50. How can CSS be cascaded to mix with user’s personal sheet?
Properties can be a set in recommended places and the document modified for CSS to mix with
user’s personal sheet.
9/9
Powered by TCPDF (www.tcpdf.org)