Google Answers Logo
View Question
 
Q: What does this term mean ? ( No Answer,   2 Comments )
Question  
Subject: What does this term mean ?
Category: Computers > Operating Systems
Asked by: markiz-ga
List Price: $2.00
Posted: 26 Jun 2005 15:52 PDT
Expires: 29 Jun 2005 00:06 PDT
Question ID: 537230
What does cascading style sheet mean and how can I do to get this ?
There has been advice for me in one of the comments.
Answer  
There is no answer at this time.

Comments  
Subject: Re: What does this term mean ?
From: amblis-ga on 26 Jun 2005 19:35 PDT
 
A Cascading Style Sheet (CSS) is a document describing a particular
'style' for a web page. In it, you can describe font and background
colors (or images), sizes and positioning, as well as many other
display properties.

The World Wide Web Consortium (W3C) is the official source of information;
http://www.w3.org/Style/CSS/

If you can use HTML to make a webpage, you could either link the HTML
file to an external CSS document or nest it inside the HTML file.

<head> <title>Some page</title>
<!-- Between the 'head' tags -->
<style>
 body{
  color: 000000;
  background-color: ffffff;
 }
</style>
</head>

For an external file you would save a text file with the extension as
.css instead of .txt or .htm | .html. You would put the style (as seen
above) inside that document without the HTML tags. You would then put
the following inside your HTML source (where the title of the CSS file
is "MyCSS.css").

<head> <title>Some page</title>
<!-- Between the 'head' tags -->
<link rel="stylesheet" type="text/css" href="MyCSS.css" />
</head>


A style starts with the tag name, followed by an opening curly bracked
'{' and is closed by a closing curly bracket '}'. Which looks like
body{ ... }
You may include multiple tags by seperating the name with a comma ',';
body, p{ ... }
You may also do nested tags where the attribute is applied only to the nested tag;
body table p{ ... }


You will have to do some research to find out all of the possible
styles. Some styles will only work for newer browsers, and some
browsers may not support CSS at all, but that is becomming rare.
Subject: Re: What does this term mean ?
From: markiz-ga on 29 Jun 2005 00:04 PDT
 
Thank you for everybody who were involved with my questions.Thank you
for your useful comments.

Important Disclaimer: Answers and comments provided on Google Answers are general information, and are not intended to substitute for informed professional medical, psychiatric, psychological, tax, legal, investment, accounting, or other professional advice. Google does not endorse, and expressly disclaims liability for any product, manufacturer, distributor, service or service provider mentioned or any opinion expressed in answers or comments. Please read carefully the Google Answers Terms of Service.

If you feel that you have found inappropriate content, please let us know by emailing us at answers-support@google.com with the question ID listed above. Thank you.
Search Google Answers for
Google Answers  


Google Home - Answers FAQ - Terms of Service - Privacy Policy