The list does not have bullets (that's the way I want it to look). I am just wanting to make sure that it does not show bullets in some browsers.
I can't see where the style sheet formatting below specifically omits the bullets. I would feel better about it if I could emphatically express in the CSS formatting that bullets are to be omitted.
Do I need to somehow specifically state in the CSS formatting that bullets are to be omitted or is it ok the way it is?
On the page it looks something like this:
臺ak 膂aple 翠sh 與ine 膀ickory 舞edwood (this is how I want it to look)
additionally (since it looks misleading in your post), be sure to escape the right angle brackets in your li.
<li class="inlineList">»Oak</li>
also: (a question in a response) if you define a class for ul, do you need to redefine the same class for each li? or does that inherit from the parent ul?
Just a quick note - to save yourself some typing, you don't have to declare a class for each <li> - as the <ul> is identified, you can reference the <li>s from this.
No matter what your still selecting the element with the inlineList class attribute, so adding a "ul" in front of the ".inlineList" is pointless. Not that its going to make your page load faster, but if you do it a lot, the difference can be quite nice (I know because I used to write that way).
Also, do you have a border specified somewhere else? Li's don't have borders, so unless your declaring it somewhere else you can get rid of it. It just bloats your code otherwise.
Bookmarks