テキストボックス 無効時の色
2017年02月13日 15:15
<html>
<head>
<title>テスト</title>
<style type="text/css">
.textbox{
background-color: gray;
color: white;
}
</style>
</head>
<body>
<div>
<input type="text" value="abc" readonly="readonly" size="40" maxlength="20" onFocus="this.blur();">
<div>
</body>
</html>