| 1234567891011121314151617181920212223242526272829303132333435 |
- <html>
- <head>
- <style>
- *{
- margin:0;
- padding:0;
- border:0;
- }
- .bottome{
- width:100%;
- height:70px;
- background:#ccc;
- position:absolute;
- bottom:0px;
- }
- .bone{
- width:30%;
- margin-left:3%;
- float:left;
- }
- .bone a{
- text-decoration:none;
- color:#fff;
- }
- </style>
- </head>
- <body>
- <iframe name="display" style="width:100%; height:100%;overflow-x:auto; " src="/mobile"></iframe>
- <div class="bottome" align="center">
- <div class="bone"><a href="#" target="display">首页</a></div>
- <div class="bone"><a href="#" target="display">订单管理</a></div>
- <div class="bone"><a href="#" target="display">个人中心</a></div>
- </div>
- </body>
- </html>
|