A
A
Alex Polyakh2016-07-28 16:13:57
css
Alex Polyakh, 2016-07-28 16:13:57

How to properly stretch li inside nav to full width of bootsrtap 3 menu is it for ie-9-10 without flex?

Should be like in the picture
6dda6f53910f4cf1b9b238b83f918d05.png

Answer the question

In order to leave comments, you need to log in

2 answer(s)
S
Sergey delphinpro, 2016-07-28
@PolyakhAleksandr

for container
display:table;
table-layout: fixed;
for children
display: table-cell;
for middle
text-align:center;
for right
text-align: right;

D
doctorcat, 2016-07-28
@doctorcat

ul { 
text-alight: center;
};
li {
display: inline-block;
width: 33%;
};

For example so. Will it go?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question