惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Security Latest
Security Latest
P
Palo Alto Networks Blog
AWS News Blog
AWS News Blog
NISL@THU
NISL@THU
T
Threatpost
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Latest news
Latest news
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
J
Java Code Geeks
P
Privacy International News Feed
阮一峰的网络日志
阮一峰的网络日志
S
Schneier on Security
博客园 - 聂微东
Project Zero
Project Zero
美团技术团队
Recent Commits to openclaw:main
Recent Commits to openclaw:main
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Scott Helme
Scott Helme
I
Intezer
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
H
Hacker News: Front Page
S
Security @ Cisco Blogs
博客园 - 司徒正美
O
OpenAI News
Last Week in AI
Last Week in AI
L
LINUX DO - 热门话题
酷 壳 – CoolShell
酷 壳 – CoolShell
SecWiki News
SecWiki News
月光博客
月光博客
S
Security Affairs
The GitHub Blog
The GitHub Blog
P
Privacy & Cybersecurity Law Blog
S
Secure Thoughts
V
V2EX
S
Securelist
F
Fortinet All Blogs
W
WeLiveSecurity
D
Docker
博客园 - 三生石上(FineUI控件)
Simon Willison's Weblog
Simon Willison's Weblog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
C
Cyber Attacks, Cyber Crime and Cyber Security
V
Visual Studio Blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com
Webroot Blog
Webroot Blog
Engineering at Meta
Engineering at Meta

博客园 - 水源

“诚基金”启动救助无鼻女-杨桂情(无鼻女最新进展) 一步一步教你定制变色杯 重新整理expression web 视频教程下载地址 重新整理expression web 视频教程下载地址 ASP.NET 中 Cookie 的基本知识 expression web 视频教程 19讲 数据视图 expression web 视频教程 18讲 网站 expression web 视频教程第17节 表格菜单 expression web 视频教程第16讲:工具菜单 expression web 视频教程第12-15讲:css 定位 布局 列表 表格 expression web 视频教程第十节 格式菜单[4] 样式 expression web 视频教程第九节 格式菜单[3] 样式 expression web 视频教程第八节 格式菜单[2] [转载]ASP.NET AJAX 1.0“我怎么做?”免费录像(更新至最终版) expression web 视频教程第七节 格式菜单 expression web 视频教程第六节 插入菜单 Expression Web 视频教程第五节视图菜单 Expression Web 视频教程第四节编辑菜单 Expression Web 视频教程第三节文件菜单
expression web 视频教程第十一节 格式菜单[5] 样式
水源 · 2007-03-06 · via 博客园 - 水源

11讲 这些Css样式都是网络找的资料,如果大家想深入给我留言。要不我就跳过这些东西。但是我会把相关的参考资料贴出来。谢谢大家关注

语法:

background-repeat : repeat | no-repeat | repeat-x | repeat-y

取值:

repeat :  默认值。背景图像在纵向和横向上平铺
no-repeat :  背景图像不平铺
repeat-x :  背景图像仅在横向上平铺
repeat-y :  背景图像仅在纵向上平铺

说明:

设置或检索对象的背景图像是否及如何铺排。必须先指定对象的背景图像( background-image )。
此属性对于 currentStyle 对象而言是只读的。对于其他对象而言是可读写的。
对应的脚本特性为 backgroundRepeat

示例:

menu { background: url("images/aardvark.gif"); background-repeat: repeat-y; }
p { background: url("images/aardvark.gif"); background-repeat: no-repeat; }

================================================

语法:

background-position-x : length | left | center | right

取值:

length :  百分数 | 由浮点数字和单位标识符组成的长度值。请参阅 长度单位
left :  居左
center :  居中
right :  居右

说明:

设置或检索对象的背景图像横坐标位置。必须先指定 background-image 属性。
该属性定位不受对象的补丁属性( padding )设置影响。
默认值为: 0%
此属性对于 currentStyle 对象而言是只读的。对于其他对象而言是可读写的。
对应的脚本特性为 backgroundPositionX

示例:

p { background-image: url("images/aardvark.gif"); background-position-x: 35%; background-repeat:no-repeat; }

=============================================

语法:

background-position-y : length | top | center | bottom

取值:

length :  百分数 | 由浮点数字和单位标识符组成的长度值。请参阅 长度单位
top :  居顶
center :  居中
bottom :  居底

说明:

设置或检索对象的背景图像纵坐标位置。必须先指定 background-image 属性。
该属性定位不受对象的补丁属性( padding )设置影响。
默认值为: 0%
此属性对于 currentStyle 对象而言是只读的。对于其他对象而言是可读写的。
对应的脚本特性为 backgroundPositionY

示例:

div { background-image: url("images/aardvark.gif"); background-position-y: 35%; background-repeat:no-repeat; }

===============================

background-attachment : scroll | fixed

取值:

scroll :  默认值。背景图像是随对象内容滚动
fixed :  背景图像固定

说明:

设置或检索背景图像是随对象内容滚动还是固定的。
此属性对于 currentStyle 对象而言是只读的。对于其他对象而言是可读写的。
请参阅 bgProperties 属性(特性)。对应的脚本特性为 backgroundAttachment

示例:

html { background-image: url("anasazi.tif"); background-attachment: fixed; }
body { background-attachment: scroll; }

dsfsdfsdfsdf dsfdssdfsdds
dsfdsds dsfsddsds