div + css格式控制
发布网友
发布时间:2022-05-12 20:10
我来回答
共2个回答
懂视网
时间:2022-05-13 00:31
容 器:container/box
头 部:header
主 导 航:mainNav
子 导 航:subNav
顶 导 航:topNav
网站标志:logo
大 广 告:banner
页面中部:mainBody
底 部:footer
菜 单:menu
菜单内容:menuContent
子 菜 单:subMenu
子菜单内容:subMenuContent
搜 索:search
搜索关键字:keyword
搜索范围:range
标签文字:tagTitle
标签内容:tagContent
当前标签:tagCurrent/currentTag
标 题:title
内 容:content
列 表:list
当前位置:currentPath
侧 边 栏:sidebar
图 标:icon
注 释:note
登 录:login
注 册:register
列 定 义:
column_1of3 (三列中的第一列)
column_2of3 (三列中的第二列)
column_3of3 (三列中的第三列)
热心网友
时间:2022-05-12 21:39
<!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>无标题文档</title>
<style>
#left{
background-color:blue;
height:32px;
width:expression(parseInt(body.offsetWidth)-100);
float:left;
}
#right{
background-color:yellow;
width:100px;
height:32px;
float:right;
}
</style>
</head>
<body>
<div style="width:100%;">
<div id="left">hhhhhhhhhhhhhhhhhhhhhhhh</div>
<div id="right"></div>
</div>
</body>
</html>