topmargin="0" marginwidth="0" marginheigth="0
时间: 2023-07-19 12:52:41 浏览: 159
FreeTextBox,完美留言板
3星 · 编辑精心推荐
`topmargin="0" marginwidth="0" marginheight="0"` 是 HTML 中用于设置页面边距和宽度的属性。
- `topmargin="0"` 设置页面上边距为0,即网页顶部和浏览器窗口的距离为0。
- `marginwidth="0"` 设置页面左右边距为0,即页面内容与浏览器窗口的距离为0。
- `marginheight="0"` 设置页面上下边距为0,即页面内容与浏览器窗口上下边缘的距离为0。
这些属性可以用于控制页面的显示效果,但是在现代的网页开发中,这些属性已经不再推荐使用,因为它们已经被 CSS 样式所取代。
阅读全文
相关推荐
<%-- Created by IntelliJ IDEA. User: syp Date: 2023/5/22 Time: 13:59 To change this template use File | Settings | File Templates. --%> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>Denglu</title> </head> <body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0"> <fieldset style="width: auto; margin: 0px auto"> <legend> 欢迎使用常州工业职业技术学院人员管理系统 </legend>
<form action="loginSuccess.action"> 用户:<input type="text" name="username"/>
密码:<input type="password" name="password"/>
<input type="submit" value="登录"/> 注册 </form> </fieldset> </body> </html>
<form action="loginSuccess.action"> 用户:<input type="text" name="username"/>
密码:<input type="password" name="password"/>
<input type="submit" value="登录"/> 注册 </form> </fieldset>