htmlpage.htm
来自「ajaxpro_treeview 实现 web 上的ajax树结构」· HTM 代码 · 共 44 行
HTM
44 行
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN " "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">
<html xmlns= "http://www.w3.org/1999/xhtml ">
<head>
<meta http-equiv= "Content-Type " content= "text/html; charset=utf-8 " />
<title> div百分比高度 </title>
<style type= "text/css">
*{
margin:0px;
padding:0px;
}
html,body
{
width:100%;
height:100%;
}
div.col1
{
width:20%;
height:100%;
float:left;
background-color:#cccccc;
}
div.col2
{
width:80%;
height:100%;
float:left;
background-color:#ffffcc;
}
</style>
</head>
<body>
<div class= "col1 "> 这是第一列20%宽,100%高,左浮动
</div>
<div class= "col2 "> 这是第二列20%宽,100%高,左浮动
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?