Answers for "how to style text in a button css"

CSS
0

how to configure buttons in css

div.wpforms-container-full .wpforms-form button[type=submit] {
 
color: #0099CC; /* Text color */
 
background-color: transparent; /* Remove background color */
 
border: 2px solid #0099CC; /* Border thickness, line style, and color */
 
border-radius: 5px; /* Adds curve to border corners */
 
text-transform: uppercase; /* Make letters uppercase */
 
}
Posted by: Guest on May-16-2020
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

Browse Popular Code Answers by Language