CSS样式的写法

CSS样式的三种写法

方式一:将CSS样式直接写到标签里面

"width: 200px;height: 150px;background-color: aqua">ddd

方式二:将CSS样式写到页面头部



	
	    
	    Title
	    
	    
	
	
		
"width: 200px;height: 150px;background-color: aqua">div
"sth">div
"sth">div

方式三:建立单独的CSS文件,然后在页面中引用

  • 创建CSS文件,将其命名为demo.css:
.fun{
    background-color: burlywood;
}
  • 在页面中引用上步中创建的样式文件:

"en">
	
	    "UTF-8">
	    Title
	    "stylesheet" type="text/css" href="demo.css">
	
	
		
"fun">div

你可能感兴趣的:(CSS样式的写法,CSS样式,CSS样式的三种写法,Java,HTML)