answersLogoWhite

0

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

14y ago

What else can I help you with?

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 <style> 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: <style type="text/css" media="all"> body { background-color: #FFFFFF; } p { text-color: #000000; text-weight: normal; } </style>


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 of the following data structures can be randomly accessed giving loc A. linked list implemented using array B. singly linked list C. double linked list D. both single and double linked list?

Which of the following data structures can be randomly accessed giving loc?A. linked list implemented using arrayB. singly linked listC. double linked listD. both single and double linked listThe answer is A.

Related Questions

Difference between embedded style sheet and linked style sheet?

Actually, there is no difference between an embedded style sheet and a linked style sheet. They are exactly the same thing, just different wording to describe the same process. To embed a style sheet into a document, you use the <link /> tag within the <head> tag of an HTML document. An example is: <link rel="stylesheet" href="style.css" type="text/css" />


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 <style> 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: <style type="text/css" media="all"> body { background-color: #FFFFFF; } p { text-color: #000000; text-weight: normal; } </style>


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. <style type="text/css"> @import url("style.css"); </style> 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.)