April 23, 2019

Srikaanth

Intuit CSS Interview Questions Answers

Which Property Is Used To Indent The Text Of A Paragraph?

The text-indent property is used to indent the text of a paragraph.

Which Property Is Used To Align The Text Of A Document?

The text-align property is used to align the text of a document.

What Are The Components Of A Css Style?

A style rule is made of three parts −

Selector − A selector is an HTML tag at which a style will be applied. This could be any tag like <h1> or <table> etc.

Property − A property is a type of attribute of HTML tag. Put simply, all the HTML attributes are converted into CSS properties. They could be color, border etc.

Value − Values are assigned to properties. For example, color property can have value either red or #F1F1F1 etc.

What Is Type Selector?

Type selector quite simply matches the name of an element type. To give a color to all level 1 headings −

h1 {
   color: #36CFFF;
}

Which Property Is Used To Set The Opacity Of An Image?

The -moz-opacity property is used to set the opacity of an image.
Intuit Most Frequently Asked Latest CSS Interview Questions Answers
Intuit Most Frequently Asked Latest CSS Interview Questions Answers

Which Property Of A Hyperlink Signifies Unvisited Hyperlinks?

The :link signifies unvisited hyperlinks.

Which Property Of A Hyperlink Signifies Visited Hyperlinks?

The :visited signifies visited hyperlinks.

Which Property Of A Hyperlink Signifies An Element That Currently Has The User's Mouse Pointer Hovering Over It?

The :hover signifies an element that currently has the user's mouse pointer hovering over it.

What Is Universal Selector?

Rather than selecting elements of a specific type, the universal selector quite simply matches the name of any element type
* {
   color: #000000;
}

This rule renders the content of every element in our document in black.

What Is Descendant Selector?

Suppose you want to apply a style rule to a particular element only when it lies inside a particular element. As given in the following example, style rule will apply to <em> element only when it lies inside <ul> tag.
ul em {
   color: #000000;
}

What Is Class Selector?

You can define style rules based on the class attribute of the elements. All the elements having that class will be formatted according to the defined rule.
.black {
   color: #000000;
}

This rule renders the content in black for every element with class attribute set to black in our document.

Can You Make A Class Selector Particular To An Element Type?

You can make it a bit more particular. For example

h1.black
{
   color: #000000;
}

This rule renders the content in black for only elements with class attribute set to black.

What Is Id Selector?

You can define style rules based on the id attribute of the elements. All the elements having that id will be formatted according to the defined rule.
#black {
   color: #000000;
}

This rule renders the content in black for every element with id attribute set to black in our document.

Can You Make A Id Selector Particular To An Element Type?

can make it a bit more particular. For example

h1#black
{
   color: #000000;
}

This rule renders the content in black for only elements with id attribute set to black.

What Is The Purpose Of In Measurement Unit?

in − Defines a measurement in inches.

p {word-spacing: .15in;}

What Is The Purpose Of Mm Measurement Unit?

mm − Defines a measurement in millimeters.

p {word-spacing: 15mm;}

What Is The Purpose Of Pc Measurement Unit?

pc − Defines a measurement in picas. A pica is equivalent to 12 points; thus, there are 6 picas per inch.

p {font-size: 20pc;}

What Is The Purpose Of Pt Measurement Unit?

pt − Defines a measurement in points. A point is defined as 1/72nd of an inch.

body {font-size: 18pt;}

What Is The Purpose Of Px Measurement Unit?

px − Defines a measurement in screen pixels.

p {padding: 25px;}

What Is The Purpose Of Vh Measurement Unit?

vh − 1% of viewport height.

h2 { font-size: 3.0vh; }

What Is The Purpose Of Vw Measurement Unit?

vw − 1% of viewport width.

h1 { font-size: 5.9vw; }

Which Property Is Used To Underline, Overline, And Strikethrough Text?

The text-decoration property is used to underline, overline, and strikethrough text.

Which Property Is Used To Capitalize Text Or Convert Text To Uppercase Or Lowercase Letters?

The text-transform property is used to capitalize text or convert text to uppercase or lowercase letters.

Which Property Is Used To Control The Flow And Formatting Of Text?

The white-space property is used to control the flow and formatting of text.

How Can I Make A Page Look The Same In E.g. Ns And Msie ?

The simple is, you can't, and you shouldn't waste your time trying to make it exactly the same. Web browsers are allowed, per definition, to interpret a page as they like, subject to the general rules set down in the HTML and CSS specifications. As a web author you can not have a prior knowledge of the exact situation and/or medium that will be used to render your page, and it's almost always rather counterproductive to try to control that process. There is no necessity for a well-written page to look the same in different browsers. You may want to strive to ensure that it looks good in more than one browser, even if the actual display (in the case of graphical browsers) comes out a bit different. "Looking good" can be achieved by adopting sensible design and guidelines, such as not fixing the size or face of your fonts, not fixing the width of tables, etc… Don't fight the medium; most web users only use one browser and will never know, or bother to find out, that your page looks different, or even "better", in any other browser.

What Are Pseudo-elements?

Pseudo-elements are fictional elements that do not exist in HTML. They address the element's sub-part (non-existent in HTML) and not the element itself. In CSS1 there are two pseudo-elements: 'first-line pseudo-element' and 'first-letter pseudo-element'. They can be attached to block-level elements (e.g. paragraphs or headings) to allow typographical styling of their sub-parts.

Subscribe to get more Posts :

1 comments:

Write comments
nivedita
AUTHOR
September 12, 2019 at 12:59 PM delete

CSS has been used for designing web pages and has been one of the most preferable career choices for UI developers. Given is the list of CSS Interview Questions that will help you prepare for your CSS interview, whether you are a beginner or an experienced UI developer.

Reply
avatar