12345678910111213141516171819 |
- <div class="slogan-div"><p class="slogan">{{ slogon }}</p></div>
- <style scoped>
- .slogan-div {
- height: 224px;
- width:145px;
- writing-mode: vertical-lr; /*设置文字纵向*/
- box-sizing:border-box; /*固定div大小*/
- background-color: #87BF96;
- line-height: 45px;
- font-size:24px;
- font-family: "Source Han Sans CN";
- }
- .slogan{
- margin-top: 30px;
- color: #475837;
- }
- </style>
|