answersLogoWhite

0


Best Answer

The advantages of using CSS are numerous. It allows you to separate the rules that govern how a document should be displayed from the markup of the content. It also allows you to declare a rule only once and use it multiple times on the same page and across multiple pages. It also allows you to when you need to make a change to make the change in one place and have all the pages display with your changed rule. CSS allows you to centralize all of your rules into one place.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

9y ago

With Cascading Style Sheets (CSS), a web site appearance is improved. The structure is improved and maintaining a website becomes so much easy. The outdated method was to use <font> tags and others. These are limited and not up to current w3c standards. A CSS separates the content of your website from other elements on a webpage making it easier for search engines to refine and helps in Search Engine optimization. If you have heard of responsive web design, get this, you can make your website browser and device compatible by making tweaks in the file.

Apart from these, it saves internet bandwidth as well.

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

The main advantage of CSS is that it allows you to separate presentation from the content and markup. It also allows you to place all the presentation rules into one document. CSS ultimately will allow you to save time. If you need to make a change you only have to make the change once in one place.

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

CSS style sheets are used to separate presentation from content and markup. There are several advantages to using style sheets. First is that separation of presentation from content. This allows you to write leaner code because all of your style rules are in one place. It also allows you to save time because if you need to change a style, you only have to look in one document and make the change one time rather than in potentially hundreds of documents in hundreds of places.

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

CSS is great, you can change the entire way a website looks and feels just by changing the one style sheet. No longer do you have to edit every page if you want to make any changes, the website css zen garden is good so Google that for more info :)

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

The idea was to separate the document content into the HTML and the presentation of that document to CSS. More than one document could use the same stylesheet. Through some careful manipulation and the order in which they were linked. documents could multiple stylesheets for various reasons and effects.

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

There are several advantages to using a style sheet in web design. The biggest one is the ability to set a style in one place and use it on numerous pages. Another big advantage is that it allows you to keep cleaner code by separating document content and markup from document presentation. This makes it easier for you to read your code both while you are working on it, but more importantly when you come back to it weeks or months later and need to fix something or make a change.

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

Cascading Style Sheets, or CSS, is the standard way to style documents. Older HTML tags like font and b were used to change the font of some text or make it bold, respectively. This created a mishmash of style, structure, and layout that was potentially problematic in some browsers, especially those for blind users which would have to analyze the structure of a document to determine how it will be presented aurally.

The solution was CSS. At first, it seemed like just a new way to add stylistic markup to documents, but its power had not yet been unleashed. The World Wide Web Consortium, or W3C, is the standards-making body for all things HTML, CSS, JavaScript, and so on. In an effort to make the Web more accessible, CSS was designed to separate the structure of a document from its presentation.

In HTML 5 (the latest version, but not yet a standard), there is a remarkable emphasis on this separation. In the new HTML, tags are used semantically to represent its role in the document (is it navigation, a footer, a citation, or what?), and CSS is used to give that content its size, color, shape, and behavior. This has many advantages:

  • You can change the theme of a website just by changing which CSS file is loaded.
  • You can totally rearrange the layout of a website without affecting its semantic value to accessible screen readers.
  • You can dynamically alter the style of elements without changing the DOM structure.

Perhaps the biggest advantage of CSS in HTML is that, as the standards evolve, CSS will be the only option for styling your documents. HTML5 does not have font, b, i, u, center, or other purely presentational tags, and so you must use CSS to employ those effects.

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

Style sheets could be used to create styles on a page. They are used to create a page more interactive.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is an advantage of using a linked style sheet?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How do you specify global styles for HTML tags?

You need to use style sheets. You can define a style in an external style sheet and link it to the documents you need. A change in the style sheet will affect all documents it is linked to. Here is an example of a simple style sheet: body { background-color: #d0e4fe; } h1 { color: orange; text-align: center; } p { font-family: "Times New Roman"; font-size: 20px; }


What is the HTML tag used to define an internal style sheet?

If you are looking to use an internal style sheet, you are going to need to use the &lt;style&gt; tag. This tag has both an opening and a closing tag and in between the two tags is where you list all of the CSS rules and declarations that you are wanting to include. Internal style sheets are used when the rules you are creating are only needed on the page that you are adding the rules to. If you plan on using the rules on multiple pages, it would be better to use an external style sheet and embed the style sheet on each of the pages. An example of an internal style sheet would look like: &lt;style type="text/css" media="all"&gt; body { background-color: #FFFFFF; } p { text-color: #000000; text-weight: normal; } &lt;/style&gt;


What are the three methods for using style sheets with a webpage?

Not sure what is asked, so two answers in one! It can be inline(with the tag,) embedded(in the head) or external(linked in the head.) The other answer deals with external and the declaration of "media" within the link in the Head tag. More than three choices, but relevance and browser support narrow them down since it is up to the browser maker to decide how it is rendered - generally "screen, print and accessiblity(auditory, etc.)


What is the advantage of using PLM?

What is the advantage of using an PLM


What CSS would apply a blue color to a web page background?

You have two options. 1. Set the body tag to the specified blue color: &lt;body style='background-color: #0000FF'&gt; (Find the colors and their corresponding codes using a search engine. #0000FF is a bright blue) 2. Create an image 1 pixel by 1 pixel of the blue color you want to use. Set the body tag to display that image: &lt;body style='background-image: url("myBlueImage.gif")'&gt; I have used the inline styles. You could do this using a linked sheet, or the &lt;STYLE&gt; tag in the header or your HTML. 1. BODY { background-color: #0000FF; background-image: url("myBlueImage.gif"); }

Related questions

How do you specify global styles for HTML tags?

You need to use style sheets. You can define a style in an external style sheet and link it to the documents you need. A change in the style sheet will affect all documents it is linked to. Here is an example of a simple style sheet: body { background-color: #d0e4fe; } h1 { color: orange; text-align: center; } p { font-family: "Times New Roman"; font-size: 20px; }


How do you edit an already created style sheet and then save it with a new name?

To edit an already created style sheet and then save it with a new name, first load the style sheet. Then, save the sheet with a new name so that changes will remain separated from the original sheet. Then, make the changes to the sheet using the editing functions.


What are cascading sheetswhat are the 3 ways using them in designing web pagesexplain with an example?

Three Ways to Insert CSSThere are three ways of inserting a style sheet: External style sheetInternal style sheetInline style An external style sheet is ideal when the style is applied to many pages. With an external style sheet, you can change the look of an entire Web site by changing one file. Each page must link to the style sheet using the tag. The tag goes inside the head section: An external style sheet can be written in any text editor. The file should not contain any HTML tags. Your style sheet should be saved with a .css extension. An example of a style sheet file is shown below: hr {color:sienna;}p {margin-left:20px;}body {background-image:URL("images/back40.gif");}


What is the file name extentesion of an externel style sheet?

An external style sheet written to the Cascading Style Sheet standards will have a .css file extension. If you are using notepad you will have to manually set this as the file extension. Most web editors will allow you to select this extension when you go to save the file.


What is the HTML tag used to define an internal style sheet?

If you are looking to use an internal style sheet, you are going to need to use the &lt;style&gt; tag. This tag has both an opening and a closing tag and in between the two tags is where you list all of the CSS rules and declarations that you are wanting to include. Internal style sheets are used when the rules you are creating are only needed on the page that you are adding the rules to. If you plan on using the rules on multiple pages, it would be better to use an external style sheet and embed the style sheet on each of the pages. An example of an internal style sheet would look like: &lt;style type="text/css" media="all"&gt; body { background-color: #FFFFFF; } p { text-color: #000000; text-weight: normal; } &lt;/style&gt;


What is as advantage of using cell styles?

co it looks better in style and not normal. more stylish work.


How do you fix font in HTML for different resolutions?

You can fix font by using CSS or Cascading Style Sheet. It can be defined differently for different resolutions.


Where and why import tag use?

The import declaration is used inside of a CSS style sheet, either inline or linked. You can use @import declarations to add a style sheet to document in the same way you might use LINK. &lt;style type="text/css"&gt; @import url("style.css"); &lt;/style&gt; If you want, you can also add a specific media to the declaration: @import url("style.css") print, tv; Eric Meyer has demonstrated a technique using @import with conditional tags to only get the styles you want depending on the users browser. Steve Souders, however, has shown that using @import in modern browsers can cause significant page load delays. From personal experience, I can tell you that too much @import makes it very hard to maintain a page. It's hard to follow as one style sheet includes another and another. I'm with Souders here: stay away from @import.


Advantage of a spread sheet program?

You can easily add together lots of numbers, create graphs, and compute things using formulas on large amounts of data.


What is the advantage of using PLM?

What is the advantage of using an PLM


What are the three methods for using style sheets with a webpage?

Not sure what is asked, so two answers in one! It can be inline(with the tag,) embedded(in the head) or external(linked in the head.) The other answer deals with external and the declaration of "media" within the link in the Head tag. More than three choices, but relevance and browser support narrow them down since it is up to the browser maker to decide how it is rendered - generally "screen, print and accessiblity(auditory, etc.)


Which type of style sheet is placed directly on the HTML tag?

an inline style sheet is directly placed inside of an HTML document using the &lt;style&gt;&lt;/style&gt; tags, but CSS styles can be placed on almost any HTML tag. To specify an HTML tag in your selector, just write out the tag without a leading qualifier (. for class, # for id) so you would have something like span{ //css rules here }