Searching for "CSS"

Q:

A book titled 'The Endgame' authored by

A)  Hussain Zaidi B) Ashwini Kumar Tewari
C) Lewis Hamilton D) Bal Gangadhar Tilak
 
Answer & Explanation Answer: A)  Hussain Zaidi

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors
Exam Prep: Bank Exams

Q:

A computer language that expresses the presentation of structured documents, such as CSS, is called _____.

A) Command Language B) Machine Language
C) Markup Language D) Style Sheet Language
 
Answer & Explanation Answer: D) Style Sheet Language

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

Q:

Which country has recorded second highest COVID19 death toll in world after China?

A) Italy B) Iran
C) India D) Japan
 
Answer & Explanation Answer: A) Italy

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

Q:

What is the use of Media Types in CSS?

Answer

Media types in CSS define the media like audio and video to be used in your HTML document to represent the properties in a better way. The font property can be used for media types as it can be used for print media or screen media. Document requires a defined media to represent the screen that can be read on the paper. It is used as:@media 


<html>


<head>


<style>


@media screen


{


p.test {font-family:verdana,sans-serif;font-size:14px;}


}


@media print


{


p.test {font-family:times,serif;font-size:10px;}


}


</style>


</head>


<body>


----------Your code here----------


</body>


</html>

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

Q:

What are the rules in CSS ruleset?

Answer

CSS consists of two types of CSS rules, first is for ruleset which identifies the style and the selector. It combines the style and the selector. Ruleset is a combination of CSS rules, for example: h1{text-color: 15pt;}, where this is the CSS rule. Ruleset is selector + declaration for example: h1 + {text-color: 15pt;}

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

Q:

What is the use of CSS sprites?

Answer

- A web page with large number of images takes a longer time to load. This is because each image separately sends out a http request.


- The concept of CSS sprite helps in reducing this loading time for a web page by combining various small images into one image. This reduces the numbers of http request and hence the loading time.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

Q:

What is CSS selector?

Answer

- Basically it is a string that identifies the elements to which a particular declaration or set of declarations will apply. 


- It can also be referred to as a link between the HTML document and the style sheet. 


- It is equivalent of HTML elements.


For example : 


A {text-indent: 12pt}


Here, the selector is A, which is called as type selector.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

Q:

What are different ways to integrate a CSS into a Web page?

Answer

There are three ways to integrate CSS into a Web page 


1. Inline: HTML elements may have CSS applied to them via the STYLE attribute.


2. Embedded: By placing the code in a STYLE element within the HEAD element.


3. Linked/ Imported: Place the CSS in an external file and link it via a link element.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology