Tagged Questions
2
votes
3answers
781 views
Horizontal Nested List using CSS
I'm trying to create a horizontal list from a nested list markup, as an example I have the current markup:
<ul>
<li class="alone">List Item 1</li>
<li class="alone">List Item ...
2
votes
4answers
817 views
CSS: Horizontal UL where LI contains a TABLE. Possible?
I am trying to fix a horrid nested table layout for a site. The page will have a variable number of elements that leverage Google charts. Instead of complex spaghetti code that tries to lay things out ...
2
votes
5answers
5k views
How to display inline several <li> with 100% width?
I have the following html:
<div id="container">
<ul>
<li>element 1</li>
<li>element 2</li>
</ul>
</div>
applied with a css as follows:
...
1
vote
2answers
47 views
Wrap each item in horizontal list using CSS
I've got a horizontal list with long items that I want to wrap. The list wraps fine if one list item is really long or if all the list items are really short.
However, if two list items are both ...
1
vote
4answers
228 views
How to make a HTML list appear horizontally instead of vertically using CSS only?
I need this because I want to make a menu (which is made from a HTML list) appear horizontally.
*I prefer not to use absolute positioning since it might become messy when I start changing the layout ...
0
votes
1answer
41 views
UL not staying in one single line
I tried what this said: How to style the UL list to a single line
display: inline;
and didn't work!
----------- My Code -----------
CSS:
*{
margin:0;
padding:0;
}
ul{
list-style:none;
}
...
0
votes
4answers
1k views
CSS: Horizontal, comma-separated list with fixed <li> width
I would like to achieve the following structure:
[gfhtfg..., kgjrfg..., asd, mrhgf, ]
^-------^ ^-------^ ^-------^ ^-------^
X X X X
(X = a fixed length)
...
0
votes
1answer
927 views
HTML Horizontal Ordered Lists with Numbering
I'm using an ordered list in order to get numbering, which works perfectly fine when the list is vertical. However, once I make it horizontal, the numbering disappears.
The display attribute in the ...