我需要尝试将一段文字移动约3%。不幸的是,无论我做什么,这种改变都不会真正出现在移动设备上。是我的代码有问题,还是相对定位的机器人有问题?
<html>
<head>
<style>
posit{
position:relative;
left:25%;
max-width:500 px;
}
</style>
<title></title>
</head>
<body>
<div id="rightcol">
<p><strong>????????</strong></p>
<p>??????????</p>
<p><strong>???????????</strong></p>
<p>???????????? </p>
<p>????????????? <a href="/??????.htm">?????????</a>.</p>
<p> </p>
</div>
<div id="centercol">
<h1>??????????</h1>
<p><strong>????????</strong></p>
<p>????????</p>
<p><strong>????????????</strong></p>
<p>?????????</p>
<p><strong>??????</strong></p>
<posit>
<p>??????????????</p>
</posit>
</div>
</body>
</html>
答案 0 :(得分:0)
我会将posit对象的定位和最大宽度分开,可能是这样的:
posit{
position : relative;
left: 25%;
}
.some-class{
max-width: 500px;
}