HTML tutorial, understanding the optgroup element

HTML tutorial, understanding the optgroup element

Select the category selection. After testing, IE and FF can support this element well.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>runcode</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="Author" content="Sheneyan" />
</head>
<body>
<select>
<optgroup label="a">
<option>a1</option>
<option>a2</option>
<option>a3</option>
</optgroup>
<optgroup label="b">
<option>b1</option>
<option>b2</option>
<option>b3</option>
</optgroup>
</select>
</body>
</html>

<<:  Detailed explanation of Vue's live broadcast function

>>:  Why is UTF-8 not recommended in MySQL?

Recommend

CentOS7 firewall and port related commands introduction

Table of contents 1. Check the current status of ...

HTML table markup tutorial (5): light border color attribute BORDERCOLORLIGHT

In a table, you can define the color of the upper...

Application of anchor points in HTML

Set Anchor Point <a name="top"><...

Solution to Ubuntu cannot connect to the network

Effective solution for Ubuntu in virtual machine ...

Some tips for using less in Vue projects

Table of contents Preface 1. Style penetration 1....

Detailed explanation of Linux system directories sys, tmp, usr, var!

The growth path from a Linux novice to a Linux ma...

A brief discussion on Nginx10m+ high concurrency kernel optimization

What is high concurrency? The default Linux kerne...

How to use vue3 to build a material library

Table of contents Why do we need a material libra...

A small problem about null values ​​in MySQL

Today, when testing the null value, I found a sma...

Summary of the use of special operators in MySql

Preface There are 4 types of operators in MySQL, ...

Solution for Tomcat to place configuration files externally

question When we are developing normally, if we w...

IE6/7 is going to be a mess: empty text node height issue

Preface: Use debugbar to view document code in iet...

How to install MySql in CentOS 8 and allow remote connections

Download and install. First check whether there i...

Example of how to implement MySQL cascading replication

The so-called cascading replication is that the m...