
CSS
ColorPaper
游侠
展开
-
CSS Introduction
What You Should Already KnowBefore you continue you should have a basic understanding of the following:HTML / XHTMLIf you want to study thes转载 2011-07-14 21:37:54 · 503 阅读 · 0 评论 -
CSS Navigation Bar
Navigation BarsHaving easy-to-use navigation is important for any web site.With CSS you can transform boring HTML menus into good-looking na转载 2011-07-16 11:33:24 · 833 阅读 · 0 评论 -
CSS Background
Background ColorCSS background properties are used to define the background effects of an element.CSS properties used for background effects转载 2011-07-16 13:54:05 · 591 阅读 · 0 评论 -
CSS Tables
CSS TablesThe look of an HTML table can be greatly improved with CSS:CompanyContactCountryAlfreds FutterkisteMaria AndersGermanyBerglunds sn转载 2011-07-15 23:27:10 · 898 阅读 · 0 评论 -
CSS Dimension
CSS DimensionThe CSS dimension properties allow you to control the height and width of an element.All CSS Dimension PropertiesThe number in转载 2011-07-16 10:56:13 · 530 阅读 · 0 评论 -
CSS Horizontal Align
Aligning Block ElementsA block element is an element that takes up the full width available, and has a line break before and after it.Exampl转载 2011-07-16 11:15:25 · 1200 阅读 · 0 评论 -
CSS Properties列表
源自:http://www.htmldog.com/reference/cssproperties/ Text and Fontsfontfont-familyfont-sizefont-weightfont-stylefont-variantline-heightletter-spacingword-spacingtext-aligntext-decorationtext-ind转载 2012-11-25 19:53:45 · 1380 阅读 · 0 评论 -
转 CSS的组合和嵌套 id class, 点, #
转 CSS的组合和嵌套 id class, 点,#CSS的组合和嵌套2007年04月27日 星期五 上午 8:58CSS的组合和嵌套组合你不必重复有相同属性的多个选择符,你只要用英文逗号(,)隔开选择符就可以了。比如,你有如下的代码:h2 { color: red; }.thisOtherClass { color: red; }.yetAnotherClass {转载 2012-11-25 19:45:01 · 3085 阅读 · 0 评论 -
The CSS Overflow Property
Every single element on a page is a rectangular box. The sizing, positioning, and behavior of these boxes can all be controlled via CSS. By behavior, I mean how the box handles it when the content ins转载 2012-11-26 10:25:11 · 694 阅读 · 0 评论 -
css float属性
¡盒子拥有一个float属性,可以设置为向左或向右浮动¡Demo:floatleft.htm和SreamLayout.htm¡要点:1.float属性让盒子浮动起来,自动贴靠于其父元素的左或右边缘。2.设置了float属性的盒子自身宽度由其内部保持标准流布局的元素宽度决定。转载 2012-11-26 11:08:56 · 554 阅读 · 0 评论 -
Styling HyperLinks
Styling LinksLinks can be styled with any CSS property (e.g. color, font-family, background, etc.).Special for links are that they can be styled differently depending on what state they are in.T转载 2011-07-15 23:37:39 · 457 阅读 · 0 评论 -
12款有助于简化CSS3开发的工具
网站开发者能通过CSS3为网站设计增添很多时尚元素,CSS3 对CSS规范做了很大的改进。现在,本文将为你介绍12款有助于简化CSS3开发的工具。 1、CSS3 Pie: 允许在IE上使用CSS3绝大部分的酷炫功能。 2、CSS3 Builder: 通过该工具,你可以用类似应用photoshop特效的界面来设计复杂的CSS3 box模型。转载 2012-11-26 17:16:58 · 526 阅读 · 0 评论 -
css经典书籍
第一本:[HTML与CSS入门经典(第7版)].(美)奥利弗,(美)莫里森.这本书可以讲是用来入门的经典书,你看了就会知道。第二本:[Web编程入门经典:HTML、XHTML和CSS].杜静.敖富江第三本CSS权威指南.pdf第四本:精通CSS与HTML设计模式.pdf第五本:CSS权威指南下面在看几本关于这方面的实例教程:[别具光芒DivCss网页布局与美化].李烨.扫描版.pdf转载 2012-11-26 17:55:57 · 805 阅读 · 0 评论 -
CSS Positioning
PositioningThe CSS positioning properties allow you to position an element. It can also place an element behind another, and specify what sh转载 2011-07-16 11:08:59 · 496 阅读 · 0 评论 -
CSS Text
CSS TextText ColorTEXT FORMATTINGThis text is styled with some of the text formatting properties. The heading uses the text-align, text-tran转载 2011-07-15 23:07:39 · 721 阅读 · 0 评论 -
CSS Id and Class
The id and class SelectorsIn addition to setting a style for a HTML element, CSS allows you to specify your own selectors called "id" and "c转载 2011-07-14 21:40:03 · 506 阅读 · 0 评论 -
The CSS Box Model
The CSS Box ModelAll HTML elements can be considered as boxes. In CSS, the term "box model" is used when talking about design and layout.The转载 2011-07-15 13:55:44 · 628 阅读 · 0 评论 -
Inheritance and Cascading Styles in CSS Explained
Overview of rulesStyles can be inherited from a parentLater styles over-rule earlier stylesStyles can combine from different sourcesStyle de转载 2011-07-15 14:57:15 · 706 阅读 · 0 评论 -
CSS Syntax
CSS SyntaxA CSS rule has two main parts: a selector, and one or more declarations:The selector is normally the HTML element you want to styl转载 2011-07-14 21:35:37 · 444 阅读 · 0 评论 -
CSS How To...
When a browser reads a style sheet, it will format the document according to it.Three Ways to Insert CSSThere are three ways of inserting a转载 2011-07-14 21:40:57 · 536 阅读 · 0 评论 -
一篇极好的 CSS 教程
CSS stands for Cascading Style Sheets. This is a simple styling language which allows attaching style to HTML elements. Every element type a转载 2011-07-14 22:49:00 · 628 阅读 · 0 评论 -
CSS Float
CSS Float« PreviousNext Chapter »What is CSS Float?With CSS float, an element can be pushed to the left or right, allowing other elements to转载 2011-07-15 10:32:19 · 509 阅读 · 0 评论 -
彻底弄懂CSS盒子模式(DIV布局快速入门)
如果你想尝试一下不用表格来排版网页,而是用CSS来排版你的网页,也就是常听的用DIV来编排你的网页结构,又或者说你想学习网页标准设计,再或者说你的上司要你改变传统的表格排版方式,提高企业竞争力,那么你一定要接触到的一个知识点就是CSS的盒子模式,这就是DIV排版的核心所在,传统的转载 2011-07-15 16:07:13 · 1309 阅读 · 0 评论 -
CSS盒子模型
什么是CSS的盒子模式呢?为什么叫它是盒子?先说说我们在网页设计中常听的属性名:内容(content)、填充(padding)、边框(border)、边界(margin), CSS盒子模式都具备这些属性。这些属性我们可以把它转移到我们日常生活中的盒子(箱子)上来理解,日常生活中所转载 2011-07-15 13:03:49 · 443 阅读 · 0 评论 -
CSS Display and Visibility
The display property specifies if/how an element is displayed, and the visibility property specifies if an element should be visible or hidd转载 2011-07-15 14:09:47 · 524 阅读 · 0 评论 -
CSS Border
CSS BorderCSS Border PropertiesThe CSS border properties allow you to specify the style and color of an element's border.Border StyleThe bor转载 2011-07-15 22:59:26 · 791 阅读 · 0 评论 -
CSS浮动属性Float详解
什么是CSS Float?float 是 css 的定位属性。在传统的印刷布局中,文本可以按照需要围绕图片。一般把这种方式称为“文本环绕”。在网页设计中,应用了CSS的float属性的页面元素就像在印刷布局里面的被文字包围的图片一样。浮动的元素仍然是网页流的一部分。这与使用绝对 定位的页面元素相比是一个明显的不同。绝对定位的页面元素被从网页流里面移除了,就像印刷布局里面的文本框被设置为无视页面转载 2012-11-25 20:22:14 · 608 阅读 · 0 评论