1. 程式人生 > >兩個css樣式

兩個css樣式

1、方形圖變圓

html:
<div class="head_inf ">
	<div>
		<img src="../imgs/g.jpg" alt="">
	</div>
</div>

  

css:
.head_inf img{
	width:150px; 
	height:150px; 
	border-radius: 50%;

  效果:

                     

 

 

2、設定字元間距;

letter-spacing:10px;

html:
<div class="song_sheet_head">
	<b>歌單推薦</b>
</div>

  

css:
.song_sheet_head{
		width: 50%;
		height: 70px;
		background-color: yellow;
		margin: 0 auto;
		text-align: center;
		font-size: 28px;
		color: black;
		line-height: 63px;
		letter-spacing: 10px;
		padding-top: 20px;

  效果:

字元無間距;

字元有間距: