文本对齐仅适用于文本
我在对面坐了大约两个小时,尝试了数千种使用 Firebug 的方法,但我失去了耐心......
我有一张桌子,在里面我收到了短信,以及 text-align: center;
text-align: center; code> 非常适合它,当我需要将 markItUp!
文本区域编辑器居中时,就会出现问题。
没有办法强制它居中,我尝试添加 !important
属性,但仍然相同。
你们知道有什么方法可以“强制”div
居中吗?
I'm sitting like 2 hours opposite of this, tried housands of ways with firebug and I lost my patience...
I got an table , inside of it I got text message, and text-align: center;
is working great for it, the problem appear when I need to center my markItUp!
textarea editor.
There is no way to force it to be centered, I've tried adding !important
attribute, and still the same.
Have you guys know any way, to 'force' the div
to be centered?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要给div一个宽度并将其左右边距设置为自动。
You need to give the div a width and set its left and right margins to auto.
设置左边距:自动; margin-right: auto 并给 div 一个
宽度
。请参阅此处:http://jsfiddle.net/5wzeP/
Set
margin-left: auto; margin-right: auto
and give the div awidth
.See here: http://jsfiddle.net/5wzeP/