需要准备的材料分别有:电脑、浏览器、html编辑器。
1、首先,打开html编辑器,新建html文件,例如:index.html。
2、在index.html中的<body>标签中,输入html代码:<button style="position: absoluteleft: 250pxtop: 40px">按钮</button>。
3、浏览器运行index.html页面,此时按钮被固定在距离上方40px,左侧250px的位置。
1、padding内边距:
例如:将div容器中的文字内容放在距离容器的左侧边框的20px,顶部边框的100px的位置。
注意:在容器里使用了padding的话,会改变容器的大小,所以在写代码之前要先计算好容器的大小及padding。
代码:
2、margin外边距:
代码:
3、绝对定位position:absolute; top:50px left:20px
让文字内容相对div容器绝对定位,需要对div容器设置:position:relative;
代码:
扩展资料:
html调整文字位置:
<p style="text-align:left">居左</p>
<p style="text-align:right">居右</p>
<p style="text-align:center">剧中</p>
<p style=" padding:10px 5px 5px 20pxborder:#000 solid 1pxheight:300pxwidth:300px">padding:上 右 下 左</p>