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

推荐订阅源

博客园 - 【当耐特】
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Y
Y Combinator Blog
D
DataBreaches.Net
Google DeepMind News
Google DeepMind News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
云风的 BLOG
云风的 BLOG
Recorded Future
Recorded Future
I
InfoQ
L
LangChain Blog
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
宝玉的分享
宝玉的分享
Martin Fowler
Martin Fowler
J
Java Code Geeks
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
C
Cybersecurity and Infrastructure Security Agency CISA
Know Your Adversary
Know Your Adversary
MongoDB | Blog
MongoDB | Blog
T
Tor Project blog
The Register - Security
The Register - Security
H
Help Net Security
Cisco Talos Blog
Cisco Talos Blog
P
Privacy & Cybersecurity Law Blog
NISL@THU
NISL@THU
P
Palo Alto Networks Blog
B
Blog RSS Feed
Latest news
Latest news
T
Threat Research - Cisco Blogs
The Hacker News
The Hacker News
C
Cisco Blogs
P
Privacy International News Feed
T
The Exploit Database - CXSecurity.com
V
Vulnerabilities – Threatpost
S
Schneier on Security
P
Proofpoint News Feed
Schneier on Security
Schneier on Security
www.infosecurity-magazine.com
www.infosecurity-magazine.com
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
AI
AI
Google Online Security Blog
Google Online Security Blog
H
Hacker News: Front Page
N
News and Events Feed by Topic
W
WeLiveSecurity

博客园 - 风语者

一些杂项资料 今天遇到的一个奇怪的vb.net问题 asp.net页面请求实现过程 中国人的成功十要 《.net组件开发第2版》下载 IE7.0(beta)可以下载了 Google Talk中的小秘密 - 风语者 - 博客园 今天的microsoft,明天的google C# 代码标准 .NET2.0版(七)Security 编码指导方针 C# 代码标准 .NET2.0版(六)Remoting 编码指导方针 C# 代码标准 .NET2.0版(五)序列化Serialization 编码指导方针 C# 代码标准 .NET2.0版(四)多线程编码指导方针 C# 代码标准 .NET2.0版(三)项目设置和结构 C# 代码标准 .NET2.0版(二)编码惯例和约定 C# 代码标准 .NET2.0版(一)命名和风格 常见程序进程(转载) Google提供的好工具 关于Response.ContentType 合并数据记录的问题
一些很少用到但还不错的Html功能 - 风语者 - 博客园
风语者 · 2005-07-13 · via 博客园 - 风语者

1.为下拉列表的内容分组
使用OPTGROUP为<select>中的<option>分组,不过只有IE6支持,如下例
你最喜欢的球队

<SELECT>
<OPTGROUP LABEL="西班牙">
<OPTION>巴塞罗那</OPTION>
<OPTION>皇家马德里</OPTION>
<OPTION>巴伦西亚</OPTION>
<OPTION>拉科鲁尼亚</OPTION>
</OPTGROUP>
<OPTGROUP LABEL="英格兰">
<OPTION>切尔西</OPTION>
<OPTION>阿森纳</OPTION>
<OPTION>曼联</OPTION>
<OPTION>利物浦</OPTION>
</OPTGROUP>
<OPTGROUP LABEL="意大利">
<OPTION>AC米兰</OPTION>
<OPTION>国际米兰</OPTION>
<OPTION>尤文图斯</OPTION>
<OPTION>罗马</OPTION>
</OPTGROUP>
</SELECT>

2.使用<RUBY>和<RT>,为文字加上注释

我们使用 Visual Studio .NET 2003 Microsoft提供的开发工具进行程序开发

<span style="font-family: Arial; font-size: 12pt;">我们使用
<RUBY><u>Visual Studio .NET 2003</u><RT><span style="font-family: Arial; font-size: 8pt; color: red;">
Microsoft提供的开发工具
</span></RUBY>进行程序开发</span>

3.使用你自己定义的元素
第一步声明命名空间,使用 HTML 元素的 XMLNS 标签属性
第二步在 @media 包装内完成自定标签的定义
第三步使用自定义标签

<HTML XMLNS:MYTAG>
<HEAD>
<STYLE>
@media all 
{
MYTAG\
:t1 { color: red;font-size: 12pt }

MYTAG\:t2 
{ color: green;font-size: 14pt }
MYTAG\:t3 
{ color: blue;font-size: 10pt }
}
</STYLE>
</HEAD>
<BODY>
<MYTAG:t1>
此文本为红色,因为其包含在 MYTAG:t1 标签内。
</MYTAG:t1>
<MYTAG:t2>
此文本为绿色,因为其包含在 MYTAG:t2 标签内。
</MYTAG:t2>
<MYTAG:t3>
此文本为蓝色,因为其包含在 MYTAG:t3 标签内。
</MYTAG:t3>
</BODY>
</HTML>