Search
 
SCRIPT & CODE EXAMPLE
 

CSS

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;
}
Comment

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>
Comment

PREVIOUS NEXT
Code Example
Css :: in a form how to remove the input outerline color or shadow 
Css :: content visability auto 
Css :: css infinite horizontal scroll 
Css :: css select alternate elements 
Css :: html checkbox change styling 
Css :: how to make width equal to height css 
Css :: css class and id 
Css :: media queries import file 
Css :: CSS 3D Transforms 
Css :: vertical align text inside div 
Css :: Heart Shape Html And Css 
Css :: select first 5 child css 
Css :: card flip css 
Css :: vertical center before css 
Css :: change border highlight color on an input text element 
Css :: image align text align in center 
Css :: how to disable keyboard in windows 10 
Css :: css color when clicked 
Css :: css toggle switch 
Css :: flip something css 
Css :: for...of...loop 
Css :: pagination html css how to working 
Css :: django jsonfield 
Css :: dot in image css 
Css :: To make multiple equal width buttons occupy container width 
Css :: how to allign li in row 
Css :: import import bootstrap-social as css file; 
Css :: insert checkbox into combobox css 
Css :: screen sizes for css media 
Css :: bulma scss add custom colors 
ADD CONTENT
Topic
Content
Source link
Name
9+9 =