html基础
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>te.html </title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!-- <link rel="stylesheet" type="text/css" href="./styles.css">-->
</head>
<frameset cols=25%,75%>
<frame src=te/left.html>
<frame src=te/right.html>
</frameset>
</html>
以上输不出结果来,如果将 <frameset cols=25%,75%>
<frame src=te/left.html>
<frame src=te/right.html>
</frameset>
改为 <body>helloworld </body>就能输出结果来,在同一个页面,为什么输出文字就可以,输出多窗口页面就出错了呢,请指地教,谢谢……
te/left.html 和 te/right.html的路径引用对不对?
另外 HTML代码要写规范
HTML code:
<frames
相关问答:
各位大哥大街们,我想把HTML转换成PDF,使用的是FOP,但是报错:
java.lang.ClassCastException: org.apache.fop.layout.BlockArea cannot be cast to org.apache.fop.layout.AreaContainer
at com.test.Html2Pdf ......
我从后台获取了下边一段html代码但我现在想吧<span></span>里的内容过滤去掉谁能给个好的,简单的方法
多谢各位了……
<html>
<body>
<div>
<sp ......
我网上下了个 kindeditor 但不支持 asp图片上传功能
有没有好一点的办法解决
或者 推荐下别的好用的 html编辑器
fckeditor
fckeditor
可以asp上传图片吗
我去fck的主页上下载 没见到有asp版的啊 ......
用css缩写 使用缩写可以帮助减少你CSS文件的大小,更加容易阅读。css缩写的主要规则请参看《常用css缩写语法总结》,这里就不展开描述。
二.明确定义单位,除非值为0
忘记定义尺寸的单位是CSS新手普遍的错误。在HT ......
我这样写就没问题
#cp1 img{magin:5px;}
#cp2 img{magin:5px;}
#cp3 img{magin:5px;}
我想精简代码,用下面的写法,就出错了,是不是语法有问题?
#cp1,#cp2,#cp3 img{magin:5px;}
是语法有问题,你的写法相 ......