1

下の画像のテキストを中央に配置するにはどうすればよいですか

私はこれを持っています

.flag{ 
    background: url('flag.png') no-repeat;
    width:120px; 
height:120px; 
}
</style>

<div class="flag">WOW</div>

これが現在の表示方法です テキストの配置が間違っている

4

3 に答える 3

2
text-align: center;
line-height: 120px;
于 2012-08-18T21:19:52.370 に答える
2

試す:

.flag{ 
    background: url('flag.png') no-repeat;
    width:120px; 
    height:120px;
    text-align:center;
    line-height:120px;
  }
于 2012-08-18T21:20:16.883 に答える
2

使用する

.flag{ 
    background: url('flag.png') no-repeat;
    width:120px; 
    height:120px; 
    line-height:120px; /* same as height */
    text-align:center;
}
于 2012-08-18T21:20:17.063 に答える