I'm using twitter bootstrap framework and I'm trying to build subscribe form.
<div style="text-align: center; margin: 35px auto;">
<form class="form-horizontal" action="" method="post">
<input type="text" class="input-large" id="" name="" placeholder="your@email.com">
<button type="submit" class="btn btn-large" style="background-color: #88d0b0; color: white;
border: 0;">
Subscribe</button>
</form>
</div>
I need to make my text input more higher(like button), so my CSS:
input.input-large[class=input-large] {
padding: 11px 19px;
font-size: 17.5px;
}
When browzer window is maximized, subscribe form looks good.
But when I'm trying to resize my screen it looks like:
In my project I'm using CSS:bootstrap.min.css and JS:bootstrap.min.js. Also my project has following construction:
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
....
</head>
<body>
<div class="container"> ..My subscribe form... </div>
</body>
What I'm doing wrong?