76 lines
1.8 KiB
HTML
76 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
/* * {
|
|
margin: 0;
|
|
padding: 0;
|
|
} */
|
|
|
|
iframe {
|
|
border: none;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.content {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#main {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: lightcyan;
|
|
}
|
|
|
|
#menu {
|
|
text-align: center;
|
|
width: 100%;
|
|
/* border-right: 5px solid lightgray; */
|
|
border-width: 10px;
|
|
padding: 30px;
|
|
}
|
|
|
|
#menu>a:hover {
|
|
|
|
|
|
/* color: blue; */
|
|
color: white;
|
|
/* background-color: aquamarine; */
|
|
background-color: dimgray;
|
|
border-radius: 5px;
|
|
border-top-right-radius: 30px;
|
|
border-bottom-right-radius: 30px;
|
|
border-top-left-radius: 30px;
|
|
border-bottom-left-radius: 30px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="main">
|
|
<div id="menu">
|
|
<a href="hemp_hum_first_info.html" target="content_frame" class="menu_item">大棚一号</a>
|
|
<a href="hemp_hum_second2_info.html" target="content_frame" class="menu_item">大棚二号</a>
|
|
</div>
|
|
<div id="content" style="width: 100%;">
|
|
<iframe name="content_frame" width="100%" height="100%"></iframe>
|
|
</div>
|
|
</div>
|
|
<div class="content">
|
|
<iframe name="content_frame1" width="100%" height="100%" scrolling="No" border="none "></iframe>
|
|
|
|
</div>
|
|
</body>
|
|
|
|
</html> |