Recommended css properties writing order

  1. Positioning: Positioning Properties
  2. Box model: box model
  3. Typographic: Text Properties
  4. Visual: visual attributes
  5. Other: Other
.classname { 
  /* Positioning */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;

  /* Box-model */
  display: block;
  float: right;
  width: 100px;
  height: 100px;
  padding: 20px;

  /* Typography */
  font: normal 13px "Helvetica Neue", sans-serif;
  line-height: 1.5;
  color: #333;
  text-align: center;

  /* Visual */
  background-color: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-radius: 3px;

  /* Other */
  opacity: 1;
}

Guess you like

Origin www.cnblogs.com/icecream-lling/p/11528307.html