css小知识点

1、div如何让背景是透明的

如:<div class="ha"></div>

<style>

.ha{

background:transparent;

}

</style>

2、input有多种类型:如 radio、submit、text等,如何取出它们其中一个进行写css样式呐?看下边

<div class="ha">

<form>

<input type="text" class="form-control" placeholder="您的邮箱">

<input type="text" class="form-control" placeholder="标题>

<input type="submit" class="form-control" value="提交">

</form>

</div>

<style>

.ha input[type="submit"]{

background:red;

}

</style>

3、关于li怎么去点的样式

————li去点。可以用list-style-type:none属性;可以给li加个背景样式list-style-image: url(../images/li_bg.gif);这里边的图片可以做成10*10px;5*8px的。

4、a链接如何去掉初始状态

a:link,a:visited{

   color:XX;

  text-decoration:none;

}

5、关于图片跟字并排时,让字体在图片边水平垂直居中

如:只需要给左边的电话图片加个img{vertical-align:middle;}即可变成

原文地址:https://www.cnblogs.com/fkcqwq/p/5620422.html