frameset与css

news/2024/7/4 0:48:57 标签: stylesheet, css, class, html, button, border
html" title=class>class="baidu_pl">
html" title=class>class="article_content clearfix">
html" title=class>class="htmledit_views">

框架页

<html>

<head>

<title></title>

</head>


<frameset rows="50,*" frameborder="1" border="0" framespacing="0">
  <frame src="shang.htm"/>
  <frameset cols="20%,*">
    <frame src="xia.htm"/>
    <frame src="body.htm"/>
  </frameset>
</frameset>


</html>

 

 

html" title=class>class="tags" href="/tags/CSS.html" title=css>css

1.html" title=class>class="tags" href="/tags/CSS.html" title=css>css

/* CSS Document */
img.button
{
 
 font-size : 4pt ;
 cursor : hand ;
}
.input
{
font-size : 29pt ;


}

1.htm

<html>

<head>

<title></title>

</head>

<body>
<link href="1.html" title=class>class="tags" href="/tags/CSS.html" title=css>css" rel="html" title=class>class="tags" href="/tags/STYLESHEET.html" title=stylesheet>stylesheet" type="text/html" title=class>class="tags" href="/tags/CSS.html" title=css>css">
<img src="12.gif" html" title=class>class="button">
<select name="dimz" html" title=class>class="input">
<option value="love">爱</option>
<option value="betray">背叛</option>
</select>
</body>

</html>

 


http://www.niftyadmin.cn/n/1426179.html

相关文章

asp.net连接数据库

Connection。用于连接到数据库和管理对数据库的事务。 Command。用于对数据库发出 SQL 命令。 DataReader。用于从 SQL Server 数据源读取只进数据记录流。 DataSet。用于对单层数据、XML 数据和关系数据进行存储、远程处理和编程。 DataAdapter。用于将数据推入 DataSet&#…

启用IIS时出现“意外错误ox8ffe2740”的解决方法

分析原因&#xff0c;可能是http端口被其他程序占用&#xff0c;解决方法如下&#xff1a; 方法一&#xff1a;让iis用其他的端口。 找到默认网站&#xff0c;点击 右键&#xff0d;属性&#xff0c;把tcp端口从默认的80改为其他端口&#xff0c;如&#xff1a;8080&#xff0c…

IIS5.0可直接下开安装的,不用非要系统盘

IIS5.0可直接下开安装的,不用非要系统盘

得DateTime类型数据中的日期(仅年月日

得DateTime类型数据中的日期&#xff08;仅年月日 select convert(varchar(10),columnname,120) from tablename

Calendar用法 取年月日并连成字符串

取年月日并连成字符串import java.util.Calendar;Calendar CD Calendar.getInstance();int YY CD.get(Calendar.YEAR) ;int MM CD.get(Calendar.MONTH)1;int DD CD.get(Calendar.DATE);int HH CD.get(Calendar.HOUR);int NN CD.get(Calendar.MINUTE);int SS CD.get(Cale…

int和String相互转换,session转int型

int AdHostID Integer.parseInt((String)session.getAttribute("ID")); 1 如何将字串 String 转换成整数 int? A. 有两个方法:1). int i Integer.parseInt([String]); 或 i Integer.parseInt([String],[int radix]); 2). int i Integer.valueOf(my_str).intVal…

【Python】迭代

Python的for循环操作很抽象。 迭代与按下标访问数组最大的不同是&#xff0c;后者是一种具体的迭代实现方式&#xff0c;而前者只关心迭代结果&#xff0c;根本不关心迭代内部是如何实现的。 1. 迭代List 对于有序集合&#xff0c;元素确实是有索引的。如果我们想知道元素的…

String pic=./uploadfiles/+prefix+su.getFiles().getFile(0).getFileName();

String pic"./uploadfiles/"prefixsu.getFiles().getFile(0).getFileName();