热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

text-align在FF和chrome中不起作用-text-alignnotworkinginFFandchrome

IhaveanasppagewhereIamtryingtoalignincenter.Thefollowingisthespecificline,我有一个asp

I have an asp page where I am trying to align in center. The following is the specific line,

我有一个asp页面,我试图在中心对齐。以下是具体的行,


This code is working fine in IE, but in FF and chrome, the text is aligned in left. If I change the same code as

此代码在IE中工作正常,但在FF和chrome中,文本在左侧对齐。如果我改变相同的代码


Then the alignment is working only in FF. IE and chrome fails :(. Can anyone tell me how to solve this issue ?

然后对齐仅在FF中起作用。 IE和Chrome失败:(。任何人都可以告诉我如何解决这个问题?

UPDATED:

The whole table structure looks like this,

整个表结构如下所示,

4 个解决方案

#1


4  

use both text-align: center; and text-align: -moz-center;

同时使用text-align:center;和text-align:-moz-center;

Edit 1

You can also try

你也可以试试

  

Edit 2

You can use fire bug and see what rule is applied on your td
Some link how to use firebug
http://www.studiopress.com/tips/using-firebug.htm
http://net.tutsplus.com/tutorials/other/10-reasons-why-you-should-be-using-firebug/

您可以使用fire bug并查看您的td上应用了哪些规则。某些链接如何使用firebug http://www.studiopress.com/tips/using-firebug.htm http://net.tutsplus.com/tutorials/other / 10 - 原因 - 为什么 - 你 - 应该待使用-萤火/

#2


1  

If it doesn't work for you, you have some other rule somewhere else that is overriding your style. Text-align is perfectly all-browser-friendly.

如果它对你不起作用,那么你在其他地方有一些其他规则可以覆盖你的风格。 Text-align非常适合浏览器使用。

I'd suggest two things:

我建议两件事:

  • stop using inline styles. Styling doesn't have a place in your html, it should be defined in a separate file.

    停止使用内联样式。样式在html中没有位置,应该在单独的文件中定义。

  • use webdeveloper tools in your browser to find out which rules apply to your TD and make sure you've defined only one rule

    在浏览器中使用webdeveloper工具,找出适用于您的TD的规则,并确保您只定义了一条规则

#3


0  

There may be different ways to do this. One of the ways is to use left margin. Unless your position is relative, you may use this. For example-

可能有不同的方法来做到这一点。其中一种方法是使用左边距。除非你的职位是相对的,否则你可以使用它。例如-


#4


0  

Try using html attribute.

尝试使用html属性。


推荐阅读
author-avatar
手机用户2502920725
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有