Java资源分享网 - 专业的Java学习网站 学Java,上Java资源分享网
CSS Tutorial PDF 下载
发布于:2024-06-27 10:49:22
(假如点击没反应,多刷新两次就OK!)

CSS Tutorial PDF 下载  图1

 

 

资料内容:

 

Styles Solved a Big Problem
HTML was never intended to contain tags for formatting a document.
HTML was intended to define the content of a document, like:
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
When tags like <font>, and color attributes were added to the HTML 3.2 specification, it started a
nightmare for web developers. Development of large web sites, where fonts and color information
were added to every single page, became a long and expensive process.
To solve this problem, the World Wide Web Consortium (W3C) created CSS.
In HTML 4.0, all formatting could be removed from the HTML document, and stored in a separate
CSS file.
All browsers support CSS today.