1. Upper and lower list tags: <dl>..</dl>: Upper dt Copy code The code is as follows:<dl> <dt>Sports and Outdoors</dt> <dd>Sneakers</dd> <dd>Basketball shoes</dd> <dd>Football shoes</dd> <dd>Running shoes</dd> </dl> 2. Define an ordered list: <ol> property: Copy code The code is as follows:<ol type="a" start="55"> <li>Sneakers</li> <li>Basketball shoes</li> <li>Running shoes</li> <li>Soccer shoes</li> </ol> 3. Define an unordered list: <ul> Attribute: type: You can set the sorting style or add this attribute to li separately. Copy code The code is as follows:<ul type="square"> <li type="disc">Sneakers</li> <li>Basketball shoes</li> <li>Running shoes</li> <li>Soccer shoes</li> </ul> |
<<: Detailed explanation of prototypes and prototype chains in JavaScript
>>: Methods and techniques for designing an interesting website (picture)
This article shares the specific code of JavaScri...
Table of contents Preface zx library $`command` c...
React originated as an internal project at Facebo...
The simplest application of store in Vue is globa...
JPQL stands for Java Persistence Query Language. ...
Click here to return to the 123WORDPRESS.COM HTML ...
Preface JavaScript is one of the widely used lang...
There is a new feature that requires capturing a ...
I encountered a requirement to customize shortcut...
Problem Record Today I was going to complete a sm...
Table of contents Code cleaning "Frames"...
This article shares with you a compound motion im...
Assuming business: View the salary information of...
Table of contents Manual deployment 1. Create a s...
Cookie It is a standard way to save the state of ...