• +91 9723535972
  • info@interviewmaterial.com

CSS Interview Questions and Answers

Related Subjects

CSS Interview Questions and Answers

Question - 51 : - What is CSS declaration?

Answer - 51 : - CSS declaration is style attached to a specific selector. It consists of two parts; property which is equivalent of HTML attribute, e.g. text-indent: and value which is equivalent of HTML value, e.g. 10pt. NOTE: properties are always ended with a colon.

Question - 52 : - What is 'important' declaration?

Answer - 52 : - Important declaration is a declaration with increased weight. Declaration with increased weight will override declarations with normal weight. If both reader's and author's style sheet contain statements with important declarations the author's declaration will override the reader's. BODY {background: white ! important; color: black} In the example above the background property has increased weight while the color property has normal.

Question - 53 : - What is cascade?

Answer - 53 : - Cascade is a method of defining the weight (importance) of individual styling rules thus allowing conflicting rules to be sorted out should such rules apply to the same selector. Declarations with increased weight take precedence over declaration with normal weight: P {color: white ! important} /* increased weight */ P (color: black} /* normal weight */ Are Style Sheets case sensitive? No. Style sheets are case insensitive. Whatever is case insensitive in HTML is also case insensitive in CSS. However, parts that are not under control of CSS like font family names and URLs can be case sensitive - IMAGE.gif and image.gif is not the same file.  

Question - 54 : - How do I have a non-tiling (non-repeating) background image?

Answer - 54 : - With CSS, you can use the background-repeat property. The background repeat can be included in the shorthand background property, as in this example: body { background: white url(example.gif) no-repeat ; color: black ; } CSS is clearly very useful for separating style from content. But apparently people tend to have problems when using it for layouts. Would you say this is because people have not yet understood how to properly do layout in CSS, or is it CSS that is lacking in this area? What can be done to improve the situation? --- Would the web benefit from HTML and CSS being complemented with some

Question - 55 : - CSS is clearly very useful for separating style from content. But apparently people tend to have problems when using it for layouts. Would you say this is because people have not yet understood how to properly do layout in CSS, or is it CSS that is lacking in this area? What can be done to improve the situation? --- Would the web benefit from HTML and CSS being complemented with some kind of "layout language"?

Answer - 55 : - Layout and style should be tackled by the same language and the two are intertwined. Trying to split the two is like splitting the HTML specification in two, one specification describing inline elements and the other describing block elements. It's not worth the effort. CSS is capable of describing beautiful and scalable layouts. The CSS Zen Garden has been a eye-opening showcase of what is possible today. If MS IE had supported CSS tables, another set of layouts would have been possible. So, there is still lots of potential in the existing CSS specifications which should be the next milestone. I always wanted to have "included" substyles or "aliases" in my CSS definition, to save redundancy. (For includes) .class1 { color:#ff0000; } .class2 { background-color:#ffffff; } .class3 { include:class1,class2;font-weight:bold; } (For aliases) @alias color1 #ff0000; @alias color2 #ffffff; @alias default_image url('/img/image1.jpg'); .class1 { color:color1; } .class2 { background-image:default_image;background-color:co lor2; } This way we could change colors or images for a whole webpage by editing a reduced number of lines.

Question - 56 : - Had you considered any of these ideas in the past? If so, why were they rejected?

Answer - 56 : - Yes, aliases and constants have been considered. CSS is already an indirection. Instead of putting properties and values directly on elements, it associates properties and values with selectors. What you (and others) are proposing is to add another layer of indirection. By doing so, one could possible write shorter, more manageable style sheets. However, there are also some downsides. It requires a new syntactic construct (@alias) and implementations must be able to remember a list of aliases. What if aliases are defined in one style sheet and referenced in another -- should that work? If so, what if the first style sheet isn't available?..

Question - 57 : - Styles not showing?

Answer - 57 : - There are different ways to apply CSS to a HTML document with a stylesheet, and these different ways can be combined: * inline (internal) (Deprecated for XHTML) * embedded (internal) * linked (external) and * @import (external) Note: An external stylesheet is a text file that contains only CSS Styles. HTML comments are not supposed to be in there and can lead to misinterpretation (> is the CSS "Child" selector!).

Question - 58 : - How do I quote font names in quoted values of the style attribute?

Answer - 58 : - The attribute values can contain both single quotes and double quotes as long as they come in matching pairs. If two pair of quotes are required include single quotes in double ones or vice versa:

It's been reported the latter method doesn't work very well in some browsers, therefore the first one should be used.

Question - 59 : - Why is my external stylesheet not working ?

Answer - 59 : - There may be several different reasons behind that, but one very common mistake is to have an external stylesheet that contains HTML markup in some form. An external stylesheet must contain only CSS rules, and if required, correctly formed CSS comments; never include any HTML syntax, such as