stone310
看下是这种效果吗<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title</title>
<style type="text/css">
span {
text-align: right;
width: 200px;
display: inline-block;
}
li { list-style-type: none; }
</style>
</head>
<body>
<form>
<ul>
<li><span>情况1:</span><input type="text"/></li>
<li><span>情况1情况1:</span><input type="text"/></li>
<li><span>情况1情况1情况1:</span><input type="text"/></li>
</ul>
</form>
</body>
</html>