CSS基础属性

CSS基础属性

行级元素、内联元素(inline)

  • feature(特点):内容决定元素所占位置,不可以通过css改变宽高
  • span strong em a del

块级元素(block)

  • feature:独占一行,可以通过css改变宽高
  • div p ul li from adddress

行级块元素(inline-block)

  • feature:内容决定大小,可以改变宽高
  • img

凡是带有inline的元素,都有文字特性

直接上代码

<div>小明</div>
	<a href="#">www.baidu.com</a>
	<span>www.baidu.com</span>
div{
	font-size: 25px;/*设置字体的高; 一般默认是16,一般互联网默认是12。*/
	font-weight: bold;/*lighter normal(400) bold(700) bolder 100 200 300 ... 900*/
	font-style: italic;/*斜体*/
	font-family: arial;
	color: #f40;
	
	border:1px solid black;/*border-width: border-style:solid实线/dashed(条状虚线)/dotted(点状虚线) border-color:*/
	/*
	width: 0;        //三角形
	height: 0;
	border-top-color: transparent; 透明色 left,right,top,bottom
	*/

	/*对齐方式*/
	text-align: center;/*left/right*/

	/*单行文本垂直居中*/
	/*height: 100px;
	line-height: 100px;*/

	/*首行缩进*/
	text-indent: 2em; /*1em = 1 font-size;*/
}
/*
1.土鳖式(纯英文单词)
2.颜色代码(#f40)
3.颜色函数 rgb(0-255, 0-255, 0-255)
*/
/*
	R		G		B
  00-ff	  00-ff	  00-ff
*/

span{
	color: rgb(0, 0, 238);
	text-decoration: underline;/*文本装饰*/ /*line-through中划线 / none / underline下划线 / overline上划线*/
	cursor: pointer;/* pointer小手 / help问号 / copy / move  ...  */
}

/*伪类选择器*/
a:hover{
	background-color: #f40;
	font-size: 16px;
	border-radius: 10px;
	text-decoration: none;
	font-family: arial;
}

/*行级元素块级元素可以更改*/
a{
	display: block;
}

/*通配符选择器初始化所有标签*/
*{
	margin: 0;
	padding: 0;
	text-decoration: none;
	list-style: none;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值