Blogger Information
Blog 4
fans 0
comment 0
visits 2819
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
css常用背景控制,常用边框,表格与列表控制及常用表单-php第五期培训-03.12
Yzw的博客
Original
753 people have browsed it

1.这部分做的是登陆框布局,里面有很多的知识,背景色,边框,表单元素,多多练习。

实例

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>登录页面</title>
	<style type="text/css">
		*{margin:0px;padding: 0px;}/*内部样式*/
		body{background: 255,255,255;}/*网页背景色*/
		div{
			width: 400px;
			height: 350px;
			margin: 200px auto;
			background: rgba(66,66,66,0.2);/*背景色透明度*/
			border-radius:10px;/*边框圆角*/
			text-align: center;/*文本居中*/
		}
		img{
			width: 80px;
			border-radius:50%; 
			margin-top:50px; /*上边距*/
		}
		input{
			width: 300px;
			height: 30px;
			margin-top: 15px;
			border-radius: 6px;
			border: none;/*去掉元素自带边框*/
			padding-left: 15px;/*内边距向左横移*/
		} 
		button{
			border: none;
			width: 200px;
			height: 35px;
			border-radius: 6px;
			background: pink;
			color: blue;
			margin-top: 30px;
		}

	</style>
</head>
<body>
<div>
	<img src="https://www.soideas.cn/uploads/allimg/111207/0J5304295-12.jpg">
	<form >
		 <input type="text" name="" placeholder="请输入用户名..."><br>
	     <input type="password" name="" placeholder="请输入密码"><br>
	     <button>登录</button>
	     <!-- password:密码;placeholder:占位符 -->
	</form>
</div>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

2.-a.网页背景色(英文单词  16进制颜色  rgb颜色)三种表达方式。

  background:red;

  background: #C97474;

  background: rgb(255,255,255)

  background: rgba(129,44,44,0.2);背景色透明度,范围0-1之内。

  background: url(图片地址) no-repeat;图片背景

  no-repeat 不平铺(单独图片)

  background-size: 100%;

  background: linear-gradient(方向,起始颜色,终止颜色)背景色线性渐变;

  b.背景图: background-image:url(图片地址)

实例

background-image:url(https://www.soideas.cn/uploads/allimg/111207/0J5304295-12.jpg)

运行实例 »

点击 "运行实例" 按钮查看在线实例

  c.精灵图

      (background-position:背景图片定位 x y坐标)

3.边框属性

border:宽度 样式 颜色; (样式:dotted:点线边框、dashed:虚线边框、solid:实线边框、double:两个边框)

实例

border-top:1px dashed #ccc;
border-left:1px dotted #ccc;
border-right:1px solid #ccc;
border-bottom:3px double #ccc

运行实例 »

点击 "运行实例" 按钮查看在线实例

边框阴影:box-shadow: x y 阴影宽度 阴影颜色

实例

box-shadow: 5px 10px 20px red;

运行实例 »

点击 "运行实例" 按钮查看在线实例

4.表单元素

实例

<input type="radio">单选框
<input type="checkbox">多选框
<input type="submit" value="提交">
<input type="button" value="搜索">

运行实例 »

点击 "运行实例" 按钮查看在线实例

总结:这节课有很多的知识点,也是很基础的,后面前端也会用到,要熟悉运用。


Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments