效果图先上
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<form action="center">
<fieldset>
<legend>学生个人档案</legend>
姓名:</p>
<input type="text" name="" value="请输入学生姓名" style="width: 200px"></p>
手机号码:</p>
<input type="text" name="" value="请输入手机号" maxlength="11" style="width: 200px"></p>
邮箱地址:</p>
<input type="mail" name="" value="" style="width: 200px"></p>
所属学院:</p>
<input type="text" name="" value="" style="width: 200px"></p>
入学成绩:</p>
<input type="text" name="" value="" style="width: 200px"></p>
基础水平:</p>
<progress value="59" max="100" style="width: 200px"></progress></p>
入学日期:</p>
<input type="datetime-local" style="width: 200px"></p>
毕业时间:</p>
<input type="month" style="width: 200px"></p>
课程进度:</p>
<progress value="59" max="100" style="width: 200px"></progress></p>
<input type="submit" name="" value="确认无误后再点提交" style="width:200px">
</fieldset>
</form>
</body>
</html>
问题:
1, 这个右边边框线上面字母怎么写上?
2, 这个用表单写还是用盒子写方便? |