button
.button {
position: absolute;
left: 100px;
top: 150px;
}
button
<androidx.appcompat.widget.AppCompatButton
android:text="ok"
android:id="@+id/appcompatbutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="150dp"/>
button
<a href="#" class="myButton">Search</a>
.myButton {
background:linear-gradient(to bottom, #8ca0c2 5%, #476e9e 100%);
background-color:#8ca0c2;
border-radius:13px;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Times New Roman;
font-size:16px;
font-weight:bold;
padding:10px 15px;
text-decoration:none;
&:hover {
background:linear-gradient(to bottom, #476e9e 5%, #8ca0c2 100%);
background-color:#476e9e;
}
&:active {
position:relative;
top:1px;
}
}
button
const button = document.querySelector('main button');
const output = document.querySelector('main pre');
button.addEventListener('click', function (e) {
console.log('button is clicked');
output.innerHTML += 'button is clicked<br>';
});
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us