What is a (CSS) Cascading Style Sheets and how do I make one???
Thank you so much for your help!! : D
Public Comments
- Start here: http://www.w3schools.com/css/default.asp And here: http://www.w3.org/Style/CSS/
- hi, it is a text based file that use a predefined languages to specify style of elements u need to assgin each style class to an html member i.e. textbox, etc....... the basic CSS class in a text file use notepad .CLASS NAME { //CSS goes here } and in the html elemets (as example) <a class="<CLASS NAME>" .........
- Cascading style sheets is just that, a styling sheet. HTML and CSS work together to style your website: font, color, background, position of divs, widths and heights, etc. There are two ways to make your CSS work with your HTML: One is to write your CSS in between the head tags of your HTML file like this: <html> <head> <title>How CSS works</title> <style type="text/css"> body {background-image: url(Address of picture to be used) } p {color: green; font-size: small; font-family: arial; } </style> </head> <body> <p>This text will appear small, green, and in arial.</p> </body> </html> Another way is to link your HTML file to a separate CSS file. <html> <head> <title>How CSS works</title> <link type="text/css" rel="stylesheet" href="URL to CSS file" /> </head> <body> body content </body> </html> This website should help you understand CSS a little better and maybe even teach you how to use it. http://www.utexas.edu/learn/css/
Powered by Yahoo! Answers