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

Solution to the docker command exception "permission denied"

In Linux system, newly install docker and enter t...

Idea deployment tomcat service implementation process diagram

First configure the project artifacts Configuring...

Detailed installation tutorial for MySQL zip archive version (5.7.19)

1. Download the zip archive version from the offi...

Vue+video.js implements video playlist

This article shares the specific code of vue+vide...

MySQL 5.7.18 Archive compressed version installation tutorial

This article shares the specific method of instal...

Detailed steps for setting up a nexus server

1. The significance of building nexus service As ...

mysql 5.7.11 winx64.zip installation and configuration method graphic tutorial

Install and configure the MySql database system. ...

CSS eight eye-catching HOVER effect sample code

1. Send effect HTML <div id="send-btn&quo...

Some ways to eliminate duplicate rows in MySQL

SQL statement /* Some methods of eliminating dupl...

Table of CSS Bugs Caused by hasLayout

IE has had problems for a long time. When everyone...

Detailed graphic explanation of MySql5.7.18 character set configuration

Background: A long time ago (2017.6.5, the articl...