怎么把个人简介放在左上角??
thanks
<html>
<head>
<style type="text/css">
.position{padding-top:1px;
padding-right:100%;
padding-bottom:100%;
padding-left:1px;
margin-top:1px;}
</style>
</head>
<body>
<div class="position">
<p>个人简历</p>
</div>
</body>
</html>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<style>
#个人简历
{
float: right;
}
</style>
</head>
<body>
<div id="个人简历">个人简历</div>
</body>
</html>
其他的一些属性你也可以设置一下。
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>文本域</title>
<style>
p{
font-size:10px;
}
</style>
</head>
<body>
<form action="save.php" method="post" >
<p >个人简介:<p>
<textarea cols="50" rows="10">在这里输入内容...</textarea>
<input type="submit" value="确定" name="submit" />
<input type="reset" value="重置" name="reset" />
</form>
</body>
</html>
position:absolute;left:0;top:0;父级position:relative;