我在div
(一些随机按钮)旁边的另一个div
(随机按钮旁边的div
)旁边有一个div
(菜单内容之间的页面)我想要的在最后一个div中居文本。两者和style = text-align都不起作用以及添加一个新类,我尝试的最后一件事是使用跨度来居中它
<span style="text-align:center"><?php echo $tUser."'s profile";?></span>
它没有以maxwidth:500px
为中心(因此文本应该以250px为中心),它只是停留在原来的位置。
所有div都有自己的类,我似乎无法覆盖文本以将其置于最后一个div中。
那是第三个分区
<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; 它是一块石头。实际上,无论有效。
固定位置:绝对,但不是最好的修复。
答案 0 :(得分:2)
你走了:))
<div style="max-width:500px;" class="userprofile">
<p style="text-align:center;">Hello</p>
</div>
答案 1 :(得分:-1)