我不知道它是否可行,但是可以说我有一段HTML格式的段落,它已调整到我的屏幕,但是当我在另一台计算机上打开文件时,文本不在屏幕上。有没有办法将位置设置为所有计算机上的永久位置?
HTML示例:
<strong1 style="top: 180px; left: 40px;">I can't believe i actually did this, wow i really need to find</strong1>
<strong1 style="top: 180px; left: 523px;">what to do in my life</strong1>
答案 0 :(得分:1)
使用百分比,您可以根据屏幕尺寸动态定位元素。
<strong1 style="margin-top: 20%; margin-left: 10%;">Some text</strong1>
答案 1 :(得分:0)
如果使用百分比进行定位,它将随浏览器窗口大小自动缩放。