answersLogoWhite

0


Best Answer

It will be overridden by inline and internal stylesheets. Generally in most circumstances, a well written external one will load faster unless you complicate too much. I usually use two stylesheets on pages; one with the basic declarations and the other with specialized declarations.

User Avatar

Wiki User

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

Wiki User

12y ago

They can be "recycled" easily to multiple pages.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is disadvantage of external style?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the disadvantage of external auditing?

you tell me


What are the disadvantages for external fertilization?

One disadvantage of external fertilization is that numerous gametes will not survive. Another disadvantage is that the offspring are not protected, which could lead to their death.


What is the document containing style information for linked style is called?

An external style sheet.


What is internal DTD and external DTD?

what is different between internal dtd and external dtd and advantages and disadvantage plz tell me answer


What is disadvantage of active stretching is that it?

The disadvantage of active stretching is it can make pre-existing physical injuries worse. In this case, it is better to do external assistance stretches.


How would you apply a CSS style from an external style sheet to a p tag with the name photobox?

It sounds like you want: External Style = P.photobox { } <p class="photobox">Blah Blah Blah</p>


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 difference between internal and external style sheets?

Internal style sheets are defined within the HTML document using the tag, while external style sheets are stored in separate CSS files and linked to the HTML document using the tag. External style sheets allow for better organization and easier updating of styles across multiple web pages.


In which element do you set the MIME type of the external style sheet?

<link></link>


What is the problem in advantages and disadvantages of css?

The advantage of CSS is the ability to style the page dynamically. It has got no such disadvantage to mention.


How are the conflicting style rules resolved for the same element in HTML?

The conflicting style rules are resolved by introducing internal and external CSS. It defined a common cascading style sheet for all.


What is the meaning of cascading?

The cascading that is referred to in the name cascading style sheets refers to how rules can cascade in how they are implement. CSS rules can be found in three places: an external style sheet, and internal style sheet, or inline. Cascading refers to precedence. A rule located inline, will take precedence over a rule located in an internal style sheet and a rule located in an internal style sheet will take precedence over a rule located in an external style sheet. Within a single style sheet (for example an external style sheet) a rule located at the bottom of the style sheet takes precedence over a rule located at the top of the style sheet. This allows you fine tuned control over your styles and how and when they display and which one will display based upon where in the cascading hierarchy they appear.