热搜:NVER node 开发 php

CSS(一)_html/css_WEB-ITnose

2024-11-10 10:40:01
CSS(一)_html/css_WEB-ITnose

开始学习css之旅:先照样式做一个

一、使用DIV设置

第一个css样式

css:

@charset "utf-8";/* CSS Document *//*定义DIV元素方形显示*/div {    width:200px;    height:200px;    border:solid 2px blue;    float:left;    margin:4px;}

二、使用类设置

第一个css样式

css

@charset "utf-8";/* CSS Document *//*定义DIV元素方形显示*/div {    width:200px;    height:200px;    border:solid 2px blue;    float:left;    margin:4px;}/*定义.green类设置背景为绿色*/.green{    background-color:green;}/*定义.red类设置背景为红色*/.red{    background-color:red;}

效果: