DIV页面分部
- JSP
-
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>页面总体布局</title> <link href="CSSDIVde.css" type="text/css" rel="stylesheet"> </head> <body> <div id="left">左边</div> <div id="right"> <div id="righttop"> <table width="45" border="1" align=right > <tr> <td><a href="http://localhost:8080/First/login/login2.jsp">登录</a> </td> </tr> </table> </div> <div id="rightcenter"> <table width="80" border="1" align=right > <tr> <td>第2表第1个</td><td>第2表第2个</td> </table> </div> </div> </body> </html>
- CSS
@charset "UTF-8"; #left{ background-color:#00cc33; border:1px soild #ff3399; width:400px; height:400px; float:left; } #right{ background-color:#00ffff; border:1px soild #ff3399; height:400px; width:1000px; } #righttop{ background-color:red; border:1px soild #ff3399; height:80px; width:1000px; } #rightcenter{ background-color:#ffffff; border:1px soild #ff3399; height:160px; width:1000px; } .box{ width:200px; height:50px; border:5px solid #00f; margin:20px; color:red; text-align:center; }
- 运行
-
posted on 2019-11-13 23:41 ybl20000418 阅读(80) 评论(0) 编辑 收藏 举报