Answers for "css for buttons"

CSS
0

css button style rectangle

.placeholder-box {
  position: relative;
  display: block;
  width: 300px;
  min-height: 150px;
  margin-top: 50px;
  padding: 30px;
  border: 1px solid #888;
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 0 0 8px 0 rgba(0,0,0,0.25);
}

.placeholder-box p {
  text-align: center;
  margin: 0 0 15px;
}

.placeholder-box ul {
  margin: 0;
}

/* Button */

button {
 display: block;
 border: solid white;
 border-width: 0 10px;
 border-radius: 0;
 background: green;
 color: white;
 font-size: 18px;
 margin: -60px auto 15px;
 padding: 15px;
}
Posted by: Guest on February-26-2020
1

css button style rectangle

<div class="placeholder-box">
  <button type="button"> Button Text Here </button>
  <p>Nunc condimentum mauris elit</p>
  <ul>
    <li>Duis quis eros felis</li>
    <li>Nulla facilisi</li>
  </ul>
</div>
Posted by: Guest on February-26-2020
0

css button

/*css button center to left or right by Qamber Abbas*/
<style>
:root {
  --primary-bg: green;
  --fontcolor:blue;
  
  
  --fonthovercolor:black;
  --hovercolorbg:red;
    
    
}
.button {
  font-size: 2em;
  background: var(--primary-bg);
  color: var(--fontcolor);
  border: 0.25rem solid black;
  padding: 0.85em 0.75em;
  margin: 1rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.button:hover {
  color: var(--fonthovercolor);
}
.button::after {
  content: "";
  background: var(--hovercolorbg);
  position: absolute;
  z-index: -1;
  padding: 0.85em 0.75em;
  display: block;
}
.button[class^="slide"]::after {
  transition: all 0.35s;
}
.button[class^="slide"]:hover::after {
  left: 0;
  right: 0;
  top: -100;
  bottom: 0;
  transition: all 0.35s;
}
.button.slide_from_left::after {
  top: 0;
  bottom: 0;
  left: 100%;
  right: 100%;
}
  .wrapper{
    text-align:center;
  }
</style>

<div class="wrapper">
  <button class="slide_from_left button" >EXPLORE SERVICE</button>
    
  </div>
Posted by: Guest on October-19-2021

Browse Popular Code Answers by Language