问答详情
源自:-

这行代码如何缩写

#guarantee {

  line-height:         1.9em;

  font-style:          italic;

  font-family:         Georgia, "Times New Roman", Times, serif;

  color:               #444444;

  border-color:        white;

  border-width:        1px;

  border-style:        dashed;

  background-color:    #a7cece;

  padding:             25px;

  padding-left:        80px;

  margin:              30px;

  margin-right:        250px;

  background-image:    url(images/background.gif);

  background-repeat:   no-repeat;

  background-position: top left;


提问者:qq_目欺_0 2018-05-09 13:51

个回答

  • 给力哥
    2018-05-11 14:20:53

    #guarantee {
        font: italic 100%/1.9em Georgia, "Times New Roman", Times, serif;
        color: #444444;border: 1px dashed white;
        padding: 25px 25px 25px 80px;
        margin: 30px 250px 30px 30px;
        background: #a7cece url(images/background.gif) no-repeat top left;
    }