本文介绍了在多行中心水平列表(LI)元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
予有项目的列表必须cetered作为文本,但如果线未完全填满那些元件是发生在非常剩下最后LIGNE的
例如:
item1的项目2项目3
ITEM4 item5
我whanted更类似于
item1的项目2项目3
ITEM4 item5
解决方案
将自己的CSS属性
显示:内联;
和它们的容器
文本对齐:中心;
I have a list of item that must be cetered as a text, but if the line is not fully fill those element are place at the very left of the last ligne.
Ex:
item1 item2 item3
item4 item5
What I whanted is more something like
item1 item2 item3
item4 item5
解决方案
Set their CSS property
display: inline;
and their container
text-align: center;
这篇关于在多行中心水平列表(LI)元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!