Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Type this answer Research and discuss how Cascading Style Sheets (CSS) may be us

ID: 3834858 • Letter: T

Question

Type this answer

Research and discuss how Cascading Style Sheets (CSS) may be used to organize web page layout.
Discuss the pros and cons of this layout approach.
---- Other possible topics -----------
Discuss how divs used for page layout. How can the new structural elements in HTML5 be used instead of divs, in some cases, for page layout? Type this answer

Research and discuss how Cascading Style Sheets (CSS) may be used to organize web page layout.
Discuss the pros and cons of this layout approach.
---- Other possible topics -----------
Discuss how divs used for page layout. How can the new structural elements in HTML5 be used instead of divs, in some cases, for page layout?

Research and discuss how Cascading Style Sheets (CSS) may be used to organize web page layout.
Discuss the pros and cons of this layout approach.
---- Other possible topics -----------
Discuss how divs used for page layout. How can the new structural elements in HTML5 be used instead of divs, in some cases, for page layout? Research and discuss how Cascading Style Sheets (CSS) may be used to organize web page layout.
Discuss the pros and cons of this layout approach.
---- Other possible topics -----------
Discuss how divs used for page layout. How can the new structural elements in HTML5 be used instead of divs, in some cases, for page layout?

Explanation / Answer

Cascading Style Sheets (CSS) are helpful in for their building standards-compliant, fast-loading, modifiable web pages.
CCS provides below advtanges:

It makes pages lighter and reduces code against content. If it is done in proper way, it can make entire site easier and can lead to more and better
indexing of site's content.

Standard tages like <h1> helps search engines to mark it as important content, instead of fancy <font> and other tags.

Standard HTML tags like <a> and <ul> helping construct menus that contain standard HTML links to other important areas of your site.
Above approach can help search engine easily discoverable, helping ensure more efficient and deeper crawling of your site.

Disadvantage :

CSS renders differently on different browser with different dimensions.
This lead programmer to consider and test code for multiple browsers for compatibility before go live of website.

Different Levels of CSS: CSS; CSS 2; CSS 3. It creates confusion for developers and browsers.

Divs are block-level elements and they fill automatically 100% of the page width,
and our sections will line up one beneath the other.

so instead of using standard HTML tags and test code for multiple browsers. It is good practice to use
div for layout. Easy way to use is:

<div id="header"> Content for header </div>
<div id="content"> Page content </div>
<div id="menu"> Menu content </div>

New structural elements of HTML5. for examples

Footer - Which displayes footer part

Header - Which displays header part

Content - Which displays content of the page