问题描述
- 向html中插入外部样式表
-
这是html文件 1.html
<!DOCTYPE html>CSSTest4
This is some text.This is some text.This is some text.
This is some text.This is some text.This is some text.
This is some text.This is some text.This is some text.
This is some text.This is some text.This is some text.
This is some text.This is some text.This is some text.
This is some text.This is some text.This is some text.
This is some text.This is some text.This is some text.
This is some text.This is some text.This is some text.这是CSS文件 1.css
@CHARSET "UTF-8";
img{
float:right;
border:2px dotted yellow;
margin:0px 0px 30px 30px;
}
p{background-color: gray}不知道为什么1.css对1.html不起作用?
解决方案
解决方案二:
你给出的html代码是全部的html代码吗?为啥连标签都没有,你在css中是对img标签和p标签操作的,你的html并没有这些标签,而且调用外部的css文件是需要link或者import的,请搞清楚html的基础语法。
解决方案三:
css 中定义的是标签选择器,在html得有相应的标签才可以起作用, 比如 css 定义 p{ width:200px; height:200px } 在html 中得有
This is some text
这种标签,就有效果了
解决方案四:
在html中要有P 标签