Examples of using the Li tag in HTML

Examples of using the Li tag in HTML

I hope to align the title on the left and the date on the right. When I directly add float:right to the span of the date, IE8 and FF are OK, but IE6/7 will wrap. Here is a simple and effective solution.

XML/HTML CodeCopy content to clipboard
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >     
  2. < html   xmlns = "http://www.w3.org/1999/xhtml" >     
  3. < head >   
  4.     < meta   http-equiv = "Content-Type"   content = "text/html; charset=utf-8"   />   
  5.     < title > </ title >   
  6. < style >   
  7. <!--
  8.   
  9. #mylist { width:400px; list-style-type:none; margin:0; padding:0; }
  10. #mylist li span {
  11. float:right;
  12. }
  13. -- >     
  14. </ style >     
  15. </ head >     
  16. < body >     
  17. < ul   id = "mylist" >   
  18.   
  19.          < li > < span > 2011-12-2 </ span > Web Developer Network (Admin10000.com) </ li >   
  20.          < li > < span > 2011-12-2 </ span > Web Developer Network (Admin10000.com) </ li >   
  21.          < li > < span > 2011-12-2 </ span > Web Developer Network (Admin10000.com) </ li >             
  22. </ ul >   
  23.   
  24. </ body >     
  25. </ html >     

Note: The span should be written at the very beginning of the Li tag, so that the date in the span can be right-aligned in versions prior to IE6/IE7/FF3.5.

<<:  Some suggestions for HTML beginners and novices, experts can ignore them

>>:  MySQL time types and modes details

Recommend

Nginx/Httpd reverse proxy tomcat configuration tutorial

In the previous blog, we learned about the usage ...

CSS3 category menu effect

The CSS3 category menu effects are as follows: HT...

mysql uses stored procedures to implement tree node acquisition method

As shown in the figure: Table Data For such a tre...

A small collection of html Meta tags

<Head>……</head> indicates the file he...

Detailed explanation of publicPath usage in Webpack

Table of contents output output.path output.publi...

JavaScript modularity explained

Table of contents Preface: 1. Concept 2. The bene...

Introduction to the use of em in elastic layout in CSS3: How many pixels is 1em?

I have been using CSS for a long time, but I have...

JavaScript ES6 Module Detailed Explanation

Table of contents 0. What is Module 1.Module load...

Vue implements login verification code

This article example shares the specific code of ...

Ubuntu basic settings: installation and use of openssh-server

Record the installation and use of openssh-server...

MySQL permission control details analysis

Table of contents 1. Global level 2. Database lev...

Navicat connects to MySQL8.0.11 and an error 2059 occurs

mistake The following error occurs when connectin...

Example of implementing a virtual list in WeChat Mini Program

Table of contents Preface analyze Initial Renderi...