Academic Tutorials



English | French | Portugese | German | Italian
Google

Home Source Codes E-Books Downloads Contact Us About Us

CSS Tutorial
CSS Introduction
CSS Basic Syntax
CSS How to Insert
CSS Selector
CSS Internal
CSS External
CSS Inline
CSS Classes
CSS Background
CSS Text
CSS Font
CSS Border
CSS Margin
CSS Padding
CSS List
CSS Dimension
CSS Classification
CSS Positioning
CSS Pseudo-class
CSS Pseudo-element
CSS Media Types
CSS Mouse Cursor
CSS Properties
CSS Layers
CSS Float
CSS Summary

HTML Tutorials
HTML Tutorial
XHTML Tutorial
CSS Tutorial
TCP/IP Tutorial
XML Tutorials
XML Tutorial
XSL Tutorial
XSLT Tutorial
DTD Tutorial
Schema Tutorial
XForms Tutorial
XSL-FO Tutorial
XML DOM Tutorial
XLink Tutorial
XQuery Tutorial
XPath Tutorial
XPointer Tutorial
RDF Tutorial
SOAP Tutorial
WSDL Tutorial
RSS Tutorial
WAP Tutorial
Web Services Tutorial
Browser Scripting
JavaScript Tutorial
VBScript Tutorial
AJAX Tutorial
DHTML Tutorial
HTML DOM Tutorial
WMLScript Tutorial
E4X Tutorial
Server Scripting
ASP Tutorial
PHP Tutorial
PERL Tutorial
SQL Tutorial
ADO Tutorial
.NET (dotnet)
Microsoft.Net
XML Web Services
ASP.Net
.Net Mobile
C# : C Sharp
ADO.NET
VB.NET
Multimedia
SVG Tutorial
Flash Tutorial
Media Tutorial
SMIL Tutorial
Web Building
Web Browsers
Web Hosting
W3C Tutorial
Web Building
Web Quality
Web Semantic
Web Careers
Java Tutorials
Java Tutorial
JSP Tutorial
Servlets Tutorial
Struts Tutorial
EJB Tutorial
JMS Tutorial
JMX Tutorial
Programming Langauges
C Tutorial
C++ Tutorial
Visual Basic Tutorial
Data Structures Using C
Soft Skills
Communication Skills
Time Management
Project Management
Team Work
Leadership Skills
Corporate Communication
Negotiation Skills


External CSS
Previous Next

A separate file containing all the style information for a web site is called as an external CSS stylesheet. These files are commonly named style.css and have a .css extension. The name of the file is irrelevant.




Why use an external CSS stylesheet?

The advantages of an external stylesheet are:

Reduced bandwidth.For a certain period of time browsers typically only request one copy of your external CSS stylesheet, then caches that copy and won’t request your server for another copy.By refreshing the page, the cache can be over written. Try refreshing the external stylesheet if this doesn’t work.

The bandwidth of the HTML code can reduced using external CSS stylesheets so that html code to be a clearer and contain less redundant style information. To send the file out to the browser, it is required to have a smaller file size and the less bandwidth. For example, if wanted all <td> tags of your web site to be vertically aligned in the center, instead of using <td align=center> for every single <td> tag in your html document, simply define the vertical alignment in the external stylesheet and in your html document, all you will need to use is <td> and all <td> will be vertically aligned.

Easier to maintainYou only need to define it once in external stylesheet,instead of defining a style for a particular element over and over again. By changing one file, the .css file, external stylesheets also enable altering the whole look of a web site.

How do I create an external CSS stylesheet?

Using a simple text editor we can create external CSS stylesheets. Most PC’s have Text Pad which is the standard text editor, Mac’s have TextEdit which is the standard text editor. I recommend BBEdit on Macs as a text editor as it has many features a standard text editor doesn’t usually have.

>To create an external CSS stylesheet, open up a new file and enter in the style information for that site. For example (Here is style.css):

body {
background-color: #FFFFFF;
font-family: "Trebuchet MS",Arial,Verdana,Sans-serif;
font-size: 85%;
color:#505050;
margin: 0;
padding: 0;
}
#main {
width: 750px;
background-color: #FFFFFF;
border-right:1px solid #CECECE;
border-bottom:1px solid #CECECE;
text-align: left;
}
#top {
background:#6B7E93;
border-bottom:1px solid #CECECE;
height:30px;
}

In the above example, an external stylesheet named style.css contained within the same directory as the web page, the simplest way to link to style.css is by adding the following code within the head tags as given below:

<link rel="stylesheet" type="text/css" href="style.css" />



Share And Enjoy:These icons link to social bookmarking sites where readers can share and discover new web pages.
  • blinkbits
  • BlinkList
  • blogmarks
  • co.mments
  • connotea
  • del.icio.us
  • De.lirio.us
  • digg
  • Fark
  • feedmelinks
  • Furl
  • LinkaGoGo
  • Ma.gnolia
  • NewsVine
  • Netvouz
  • RawSugar
  • Reddit
  • scuttle
  • Shadows
  • Simpy
  • Smarking
  • Spurl
  • TailRank
  • Wists
  • YahooMyWeb

Previous Next

Keywords: external css style sheet, external style sheet, css file, external css a style


HTML Quizes
HTML Quiz
XHTML Quiz
CSS Quiz
TCP/IP Quiz
XML Quizes
XML Quiz
XSL Quiz
XSLT Quiz
DTD Quiz
Schema Quiz
XForms Quiz
XSL-FO Quiz
XML DOM Quiz
XLink Quiz
XQuery Quiz
XPath Quiz
XPointer Quiz
RDF Quiz
SOAP Quiz
WSDL Quiz
RSS Quiz
WAP Quiz
Web Services Quiz
Browser Scripting Quizes
JavaScript Quiz
VBScript Quiz
AJAX Quiz
DHTML Quiz
HTML DOM Quiz
WMLScript Quiz
E4X Quiz
Server Scripting Quizes
ASP Quiz
PHP Quiz
PERL Quiz
SQL Quiz
ADO Quiz
.NET (dotnet) Quizes
Microsoft.Net Quiz
XML Web Services Quiz
ASP.Net Quiz
.Net Mobile Quiz
C# : C Sharp Quiz
ADO.NET Quiz
VB.NET Quiz
Multimedia Quizes
SVG Quiz
Flash Quiz
Media Quiz
SMIL Quiz
Web Building  Quizes
Web Browsers Quiz
Web Hosting Quiz
W3C Quiz
Web Building Quiz
Web Quality Quiz
Web Semantic Quiz
Web Careers Quiz
Java Quizes
Java Quiz
JSP Quiz
Servlets Quiz
Struts Quiz
EJB Quiz
JMS Quiz
JMX Quiz
Programming Langauges Quizes
C Quiz
C++ Quiz
Visual Basic Quiz
Data Structures Using C Quiz
Soft Skills Quizes
Communication Skills Quiz
Time Management Quiz
Project Management Quiz
Team Work Quiz
Leadership Skills Quiz
Corporate Communication Quiz
Negotiation Skills Quiz

Privacy Policy
Copyright © 2003-2008 Vyom Technosoft Pvt. Ltd., All Rights Reserved.