Обучение/Помощь новичкам | Как сделать
Тема закрыта by
Andr11
Как тогда сделать кнопку когда <input type="submit" value="Вход"><br/></form>
________
посл. ред. 17.04.2018 в 10:30; всего 1 раз(а); by Andr11
бутстрап тут каким боком это на простом css написать можно
BOSER (17.04.2018 в 10:29)
бутстрап тут каким боком это на простом css написать можно
бутстрап тут каким боком это на простом css написать можно
Можеш сделать
.button{
background-color: blue;
padding: 8px;
color: white;
font-weight: bold;
display: inline-block;
border-radius: 4px;
border: 1px solid blue;
margin: 5px;
cursor: pointer;
text-align: center;
width: 280px;
}
background-color: blue;
padding: 8px;
color: white;
font-weight: bold;
display: inline-block;
border-radius: 4px;
border: 1px solid blue;
margin: 5px;
cursor: pointer;
text-align: center;
width: 280px;
}
Andr11 ,
.buttons{
background:#3a70ba;
border: 1px solid #2a5590;
padding: 11px;
width:50%;
font-weight: bold;
border-radius:3px;
cursor: pointer;
text-align: center;}
.buttons a{color:#fff;
display:block;
text-shadow:0px 2px 3px #2a5590}
________
посл. ред. 17.04.2018 в 10:41; всего 1 раз(а); by BOSER
.buttons{
background:#3a70ba;
border: 1px solid #2a5590;
padding: 11px;
width:50%;
font-weight: bold;
border-radius:3px;
cursor: pointer;
text-align: center;}
.buttons a{color:#fff;
display:block;
text-shadow:0px 2px 3px #2a5590}
________
посл. ред. 17.04.2018 в 10:41; всего 1 раз(а); by BOSER
<style>
.button{
background-color: blue;
padding: 8px;
color: white;
font-weight: bold;
display: inline-block;
border-radius: 4px;
border: 1px solid #4BB34B;
margin: 5px;
cursor: pointer;
text-align: center;
width: 280px;
}
.button_g {
background-color: green;
padding: 8px;
color: white;
font-weight: bold;
display: inline-block;
border-radius: 4px;
border: 1px solid green;
margin: 5px;
cursor: pointer;
text-align: center;
width: 200px;
}</style>
<center>
<a href="#"class="button">Войти</a></br>
Или</br>
<a href="#"class="button_g">Создать аккаунт</a>
</center>
.button{
background-color: blue;
padding: 8px;
color: white;
font-weight: bold;
display: inline-block;
border-radius: 4px;
border: 1px solid #4BB34B;
margin: 5px;
cursor: pointer;
text-align: center;
width: 280px;
}
.button_g {
background-color: green;
padding: 8px;
color: white;
font-weight: bold;
display: inline-block;
border-radius: 4px;
border: 1px solid green;
margin: 5px;
cursor: pointer;
text-align: center;
width: 200px;
}</style>
<center>
<a href="#"class="button">Войти</a></br>
Или</br>
<a href="#"class="button_g">Создать аккаунт</a>
</center>
ALEXX , у меня вход через submit <input type="submit" value="Вход"><br/></form
<input type="submit" class="button" value="Вход">
ALEXX , спасибо работает