-4

円の中に表示されるように、小さなテキスト文字列をフォーマットする必要があります - 例http://stredtech.co.uk/YMD/

PHPで行う必要があります

助言がありますか?

4

1 に答える 1

2

ライブデモ

これを使ってhtml

<div class="circleBase type6"><i>We honestly <br>
feel that whilst YMD <br>are acting on our behalf<br>
we will receive the best <br>deal for the future.</i> 
<br><br>Mr. and Mrs. C <br>Essex</div>

このcss

.type6 {
width: 200px;
height: 200px;
background: #606062;
text-align: center;
display: table-cell;
vertical-align: middle;
color: white;
}
.circleBase {
-webkit-border-radius: 999px;
-moz-border-radius: 999px;
border-radius: 999px;
}
于 2013-06-17T12:32:41.547 に答える