覆盖div中的css类

时间:2014-05-02 17:13:15

标签: html css

我在div(一些随机按钮)旁边的另一个div(随机按钮旁边的div)旁边有一个div(菜单内容之间的页面)我想要的在最后一个div中居文本。两者和style = text-align都不起作用以及添加一个新类,我尝试的最后一件事是使用跨度来居中它

<span style="text-align:center"><?php echo $tUser."'s profile";?></span>

它没有以maxwidth:500px为中心(因此文本应该以250px为中心),它只是停留在原来的位置。

所有div都有自己的类,我似乎无法覆盖文本以将其置于最后一个div中。

http://prntscr.com/3fhwuy

那是第三个分区

<div style="maxwidth:500px;" class="userprofile">
                <?php if($_SESSION['profilepage']=="vievprofile"){// VIEV PROFILE
                addPointer($pointer,174,145);?>
                <p style="margin: 0 auto"><?php echo $tUser."'s profile";?></span>

 </div>

没有一个类有float:left;

&#34;下定决心,是p还是跨度? - jeroen 1分钟前&#34; 它是一块石头。实际上,无论有效。

固定位置:绝对,但不是最好的修复。

2 个答案:

答案 0 :(得分:2)

LIVE DEMO

你走了:))

<div style="max-width:500px;" class="userprofile">
        <p style="text-align:center;">Hello</p>
 </div>

答案 1 :(得分:-1)

这是一个有效的Fiddle 新的Fiddle 没有 绝对定位

以下行适用于html &#39; block&#39; 元素。不要在&#39;内联&#39; 元素上使用此功能,例如&#39; span&#39;

<p style="text-align: center">User profile</p>

重要提示:使用正确的css-property max-width 而不是 maxwidth

希望到目前为止有所帮助。