answersLogoWhite

0


Best Answer

to modify any HTML tag just type the tag as the css property eg.

ul

{

/*your css here*/

}

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

CrespoChimp

Lvl 3
3y ago

/Code:/

.ul {

background: color; /add anything/

)

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Css code ul class
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is Inzamam-ul-Haq Father's name?

Shan-ul-Haq. His sons' names are Ibtesam-ul-Haq, (He is my class fellow) and Hassam-ul-Haq.


Can you set navigation bar content with CSS?

HTMLCreate an unordered list UL tag inside a DIV tag with an id of navBar in the HTML page!Item 1Item 2Item 3Item 4CSSInside of the CSS create a ID block called #navBar#navBar ul li {display: inline;padding-right: 5px;}


How can you make a list that organizes items with bullets?

A list organized with bullets is an unordered list. The tag to create an unordered list is UL and the tag for the individual list items is LI. <ul> <li>An item</li> <li>Another Item</li> <li>Yet another item</li> </ul> By default, most browsers will render the above code with bullets in front of the list items. If you want to ensure that behavior, however, you can use a simple CSS line. ul { list-style: disc outside none; }


How put the links and navigation bar to the left side of a paragraph using html and css attributes?

Use the float command in your CSS, such as: div.nav { float:left; } Then in your HTML document, place the nav div where you want it to appear. Copy/Paste this code into your editor and see how it looks, then modify as needed. <html> <head> <style type="text/css"> div.nav { float:left; border:2px dashed black; margin:20px; padding:10px; } div.main { border:1px solid black; width:80%; height:200px; } </style> </head> <body> <div class="main"> <div class="nav"> <ul> <li>Nav Links</li> <li>Nav Links</li> </ul> </div> <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat</p> </div> </body> </html>


How do you remove the whitespaces above and below the list items that come when we create a UL in HTML?

By using css. Setting top and bottom margins generally does the trick


How can you make a list that indicates the items with circles?

Use the CSS list-style-type, for example: <ul style="list-style-type:circle"> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul>


How do you make a navigation bar using CSS?

First the html:HomeStuffHelloWorldBye!Now this all depends if you a horizontal or vertical navigation bar. now make a css file.horizontal navigation bar:navbar{display:block;width:100%;}ul{display:block;text-align:center;}li{float:left;display:inline;list-style:none;width:19%;text-align:center;}vertical navigation bar:navbar{display:block;width:100%;}ul{display:block;text-align:center;}li{display:block;list-style:none;width:100px;text-align:left;}Mess around with the css to get the style you want


What has the author Saif ul Malook written?

Saif ul Malook has written: 'Code of Islamic laws with digests' -- subject(s): Islamic law, Law


How do you make a list that lists its items with squares in HTML?

<li>Enter the text that you want to list here</li> <li>Enter the next item that you want to list here</li> And so on until all the items you want to list are listed.


How do you put bullets in a web design code?

<ul> <li>Item One</li> <li>Item Two</li> <li>Item Three</li> </ul>


What is the activation code for fish tycoon at big fish games.com?

sall ul haol caul se


How can you make a list that list does not have any symbol like bullet uage?

You use CSS to set the list's "list-style" property to "none." Like so. <ul style="list-style:none;" > <li>item 1</li> <li>item 2</li> <li>item 3</li> </ul> Works the same way with order <ol> lists.