Answers for "how to create a button in html and css"

10

html button

<html>
  <head>
        <style>
          .button {
 			background-color: <background color>;
  			border: none;
 			color: <text color>;
  			padding: 10px 25px;
  			text-align: center;
 			text-decoration: none;
  			display: inline-block;
  			font-size: 16px;
  			margin: 4px 4px;
  			cursor: pointer;
  			border-radius: 8px;
			}
  		</style>
	</head>
	<body>
      <a href="<url>" class="button">ButtonText</a>
 	</body>
</html>
Posted by: Guest on March-01-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

Code answers related to "how to create a button in html and css"

Browse Popular Code Answers by Language