Home  >  Article  >  Web Front-end  >  DIV+CSS入门案例_html/css_WEB-ITnose

DIV+CSS入门案例_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:50:57948browse

主要由两个文件组成,一个是.html,一个是.css。一个存数据,有一个用于布局

二话不说还是直接上代码:

test.html

	<title>CSS</title>	<!-- 引入CSS -->	<link rel="stylesheet" type="text/css" href="<span%20style=" color:>my.css"/>	<div class="stylelOne">		<img  src="ok.PNG" alt="DIV+CSS入门案例_html/css_WEB-ITnose" >	</div>


my.css
.stylelOne{	/* 宽度 */	width: 1000px;	height: 1000px;	background-color: silver;}
上述代码执行效果如下:


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn