Good morning people.
I'm new to the community and here's my first question. I am trying to centralize my form with bootstrap on the screen but it does not want to work nor the stick, already tried in the form, already tried to create new div, I already div div inside, I used all the types of grid cols that could imagine but the class. justify-content-center is not working. My last code was this one.
Note: Do not call the stylization of the site, then I will change the appearance.
html{
width: 100%;
height: 100%;
}
body{
width: 100%;
height: 100%;
margin: 0px;
}
header{
margin: 0px;
background-color: green;
width: 100%;
height: 50px;
border-bottom: 4px solid;
}
footer{
padding-top: 15px;
width: 100%;
height: 10%;
background-color: #12E5CF;
text-align: center;
}
#menu{
width: 100%;
}
#menu .btnMenu{
border-radius: 5px;
color: black;
padding: 2px;
background-color: grey;
border: 2px;
border-right: 5px;
border-style: solid;
font-size: 24px;
display: inline;
}
#menu .btnMenu:hover{
background-color: green;
border: 2px;
border-right: 5px;
border-style: solid;
animation: btnAnimacao 0.1s;
animation-fill-mode: forwards;
}
@keyframes btnAnimacao{
100%{
background-color: red;
margin-top: 10px;
bottom: 0px;
border: 2px;
border-left: 5px;
border-style: solid;
text-indent: 5px;
}
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<!--jquery js -->
<script src="//code.jquery.com/jquery-1.12.0.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<!--3 LINKS REL DE BOOTSTRAP: COMP AND MINI CSS, OPTIONAL THEME, COMP AND MIN JAVASCRIPT-->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!--CSS-->
<link rel="stylesheet" type="text/css" href="css/principal.css">
<link rel="stylesheet" type="text/css" href="css/animacao.css">
</head>
<body>
<header class="container-fluid">
<div id="menu" class="col-md-12" align="center;">
<bottom>
<div class="btnMenu">Home</div>
<div class="btnMenu">Stream</div>
<div class="btnMenu">Vídeos</div>
</bottom>
</div>
</header>
<main>
<div class="row justify-content-center justify-content-sm-center justify-content-md-center justify-content-xl-center justify-content-xs-center">
<div class="col-5 offset-5 col-sm-5 offset-sm-5 col-md-5 offset-md-5 col-xl-5 offset-xl-5 col-xs-5 offset-xs-5">
<form action="" method="post">
<p>
Título:<br>
<input type="text" name="nTitulo" id="iTitulo" placeholder="Digite o título da notícia." size="30">
</p>
<p>
Texto<br>
<textarea cols="38" rows="5"></textarea>
</p>
<p>
Dia da Postagem<br>
<input type="date" name="nData" id="iData">
</p>
<p>
Foto<br>
<input type="file" name="nFoto" id="iFoto">
</p>
<center><input type="submit" name=""></center>
</form>
</div>
</div>
</main>
<footer>
</footer>
</body>
</html>