Make a half row break

前端 未结 6 1558
难免孤独
难免孤独 2021-02-07 12:03

If i want to remove the space between rows of those two element\'s how would i do that. Example:

Example 1 http://pokit.org/get/img/6be8921b47ff746c1bf297cf87ab0950.jpg<

6条回答
  •  死守一世寂寞
    2021-02-07 12:40

    You can use margins :

    DEMO

    HTML :

     Sie besuchten Düsseldorf als:
    
    

    CSS :

    .tekst {
        font-family:'Bree Serif', serif;
        color: #2980b9;
        display:block;
        margin-bottom:10px;   /* adapt the margin value to the desire space between span and select box */
    }
    

提交回复
热议问题