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

What to do if the auto-increment primary key in MySQL is used up

In the interview, you should have experienced the...

Table td picture horizontally and vertically centered code

Html code: Copy code The code is as follows: <t...

How to deploy your first application with Docker

In the previous article, you have installed Docke...

Detailed steps for building Portainer visual interface with Docker

In order to solve the problem mentioned last time...

What is the file mysql-bin.000001 in mysql? Can it be deleted?

After installing MySQL using ports, I found that ...

How to use video.js in vue to play m3u8 format videos

Table of contents 1. Installation 2. Introducing ...

Nginx reverse proxy configuration to remove prefix case tutorial

When using nginx as a reverse proxy, you can simp...

Implementation of master-slave replication in docker compose deployment

Table of contents Configuration parsing Service C...

A detailed introduction to the Linux directory structure

When you first start learning Linux, you first ne...

SQL implementation of LeetCode (178. Score ranking)

[LeetCode] 178.Rank Scores Write a SQL query to r...

Teach you how to build a Hadoop 3.x pseudo cluster on Tencent Cloud

1. Environmental Preparation CentOS Linux release...

When is it appropriate to use dl, dt, and dd?

dl:Definition list Definition List dt:Definition t...

Is it easy to encapsulate a pop-up component using Vue3?

Table of contents Summary put first: 🌲🌲 Preface: ...