en.javascript.info/12-css-for-js/11-margin/2-position-text-into-input/solution.view/index.html
2015-02-27 13:21:58 +03:00

27 lines
411 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
input {
margin: 0;
width: 12em;
}
#placeholder {
color: red;
margin: -1.3em 0 0 0.2em;
}
</style>
</head>
<body>
<div>Добро пожаловать</div>
<input type="password" id="input">
<div id="placeholder">Скажи пароль, друг</div>
<div>.. и заходи</div>
</body>
</html>