HTML uncommon tags optgroup, sub, sup and bdo example code

HTML uncommon tags optgroup, sub, sup and bdo example code
Optgroup is used in the select tag to make the drop-down list content more organized.

Copy code
The code is as follows:

<select>
<optgroup label="aaa">
<option>Distinguish right from wrong</option>
<option>Distinguish right from wrong</option>
<option>Distinguish right from wrong</option>
</optgroup>
<optgroup style="color:#C30" label="bbb">
<option>Distinguish right from wrong</option>
<option>Distinguish right from wrong</option>
<option>Distinguish<br/>right from wrong</option>
</optgroup>
</select>

sub superscript
The sup subscript can be used with <em> for annotations
Used together with the dbo dir flag, you can change the output direction of text, right -> left


Tip: You can modify some of the code before running

<<:  How to use JavaScript to implement sorting algorithms

>>:  Comparative Analysis of MySQL Binlog Log Processing Tools

Recommend

A quick review of CSS3 pseudo-class selectors

Preface If CSS is the basic skill of front-end de...

Put frameset in body through iframe

Because frameset and body are on the same level, y...

Detailed tutorial on docker-compose deployment and configuration of Jenkins

Docker-compose deployment configuration jenkins 1...

A brief discussion on several advantages of Vue3

Table of contents 1. Source code 1.1 Monorepo 1.2...

Proxy realizes the principle of two-way binding of Vue3 data

Table of contents 1. Advantages of proxy vs. Obje...

Problems with join queries and subqueries in MySQL

Table of contents Basic syntax for multi-table jo...

base target="" specifies the target of the base link to open the frame

<base target=_blank> changes the target fram...

Detailed explanation of the problem of configuring servlet url-pattern in tomcat

When configuring web.xml for tomcat, servlet is a...

How to use async and await in JS

Table of contents 1. async 2. await: 3. Comprehen...

Steps to enable TLS in Docker for secure configuration

Preface I had previously enabled Docker's 237...

HTML tag meta summary, HTML5 head meta attribute summary

Preface meta is an auxiliary tag in the head area...

js realizes the dynamic loading of data by waterfall flow bottoming out

This article shares with you the specific code of...

How to quickly create tens of millions of test data in MySQL

Remark: The amount of data in this article is 1 m...

Detailed explanation of how to detect and prevent JavaScript infinite loops

Table of contents Preface Fix infinite loop in fo...