Tools, FAQ, Tutorials:
HTML Un-ordered List Item Markers
How To Use Different Markers on Unordered List Items?
✍: FYIcenter.com
By default, browsers will use solid dots as the item markers for unordered lists. If you want to change them to something else, like tiny squares, you need to use CSS properties. Here is a tutorial example showing you how to set item markers to be tiny squares:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>List Item Markers</title> </head> <body> <h4>Search Engines:</h4> <ul style="list-style-type: square"> <li>google.com</li> <li>yahoo.com</li> <li>msn.com</li> <li>ask.com</li> </ul> </body> </html>
If you save the above document as square_item_marker.html, and view it with Internet Explorer, you will see a list of 4 items with tiny squares as item markers as shown below:
2017-05-20, 1509🔥, 0💬
Popular Posts:
How To Move Uploaded Files To Permanent Directory in PHP? PHP stores uploaded files in a temporary d...
How to use the "forward-request" Policy Statement to call the backend service for an Azure API servi...
How To Read the Entire File into a Single String in PHP? If you have a file, and you want to read th...
Where to find tutorials on Visual Studio? I want to know How to learn Visual Studio. Here is a large...
Where to find EPUB Sample Files? Here is a list of EPUB sample files collected by FYIcenter.com team...