"Cadastro de Produtos"
Bootstrap 3.2.0 Snippet by aissonsene

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<form class="form-horizontal">
<fieldset>
<!-- Form Name -->
<legend>Cadastro de produto</legend>
<!-- Select Basic -->
<div id="control-group">
<div class="control-group">
<label class="control-label" for="txtgrupo">Grupo</label>
<div class="controls">
<select id="txtgrupo" name="txtgrupo" class="input-medium">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
</div>
<!-- Text input-->
<div class="control-group">
<label class="control-label" for="txtproduto">Produto</label>
<div class="controls">
<input id="txtproduto" name="txtproduto" type="text" placeholder="" class="input-xlarge">
</div>
</div>
<!-- Text input-->
<div class="control-group">
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
body{
padding:3px;
margin:10 auto;
padding-top:0px
}
#control-group
{
background-color: #87CEFA;
width:10%;
margin:5 auto;
-moz-boder-radius: 10px;
-webkit-border-radius: 10px;
height:350px;
padding:5px;
border:2px solid #000000;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: