私はこのcsshttp ://jsfiddle.net/thiswolf/3GYY4/を持っており、各テキスト入力の下に、次のようなテキスト入力に関するガイドテキストを表示するために使用できるテキストが必要です。
私の現在のhtmlとcssは次のようになります
<!Doctype html>
<head>
<title>Lorem ipsum text below form</title>
<meta charset="utf-8" />
<style type="text/css">
.zseform{
width:300px;
background-color:#E6E6FA;
}
label{
width:15%;
float:left;
}
p{
background-color:#B0C4DE;
}
</style>
</head>
<body>
<p>
<label>Logo</label><input class="zseform" type="text" />
</p>
<p>
<label>City</label><input class="zseform" type="text" />
</p>
<p>
<label>Address</label><input class="zseform" type="text" />
</p>
</body>
</html>