惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

量子位
博客园_首页
罗磊的独立博客
云风的 BLOG
云风的 BLOG
J
Java Code Geeks
Last Week in AI
Last Week in AI
D
DataBreaches.Net
Jina AI
Jina AI
博客园 - Franky
大猫的无限游戏
大猫的无限游戏
Apple Machine Learning Research
Apple Machine Learning Research
V
V2EX
D
Docker
MongoDB | Blog
MongoDB | Blog
B
Blog RSS Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
Engineering at Meta
Engineering at Meta
The Cloudflare Blog
博客园 - 三生石上(FineUI控件)
有赞技术团队
有赞技术团队
人人都是产品经理
人人都是产品经理
H
Help Net Security
T
The Blog of Author Tim Ferriss

博客园 - calochCN

using webpack5 ubuntu 如何将任何app run为服务 这里想配置一下mysql主从,并归档,以备使用 hotkey resizer, rect win small app using C, tool utils Using ES6 Module In Browser. reprint, Use of logrotate go copy object deep深拷贝 go get net/http connections count, using middleware 手动数据库分库分片策略 记录一下ubuntu 挂载一下raid1 硬盘的过程 好久不弄css导航条,这里再布一下 sapui5 说说备案问题,说说发现的腾讯云和gitee这些国内服务商,使用过程中发现的一些猫腻 我最近觉得自己的收藏夹很乱,因为没有事情做,就想闲着给自己做个网址导航的软件【一】 学日语看到一个笑话 文字竖排,从上到下排列,仿古文的写法 从前做前端的时候, 联通的好多html5活动, 页面布局如何整齐,回顾一个常用的 我依然没有用quest2串流过一次... 这次还是决定好好用hugo写一下模板系统
抽几分钟,写个文档系统的前端页面,先排版一下.
calochCN · 2024-01-11 · via 博客园 - calochCN

抽几分钟,写个文档系统的前端页面,先排版一下.

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Doc CalochJs</title>
    <style>
      body {
        margin: 0;
        padding: 0;
      }
      li {
        list-style-type: none;
      }
      .header {
        width: 100%;
        height: 150px;
        text-align: center;
        background-color: black;
      }
      .header .menu {
        display: inline-block;
        margin: 80px 0 0 0;
        color: white;
        width: 100%;
      }
      .header .menu li {
        float: left;
        display: block;
        margin: 0 5px;
      }
      .header .menu li:hover {
        background-color: white;
        color: black;
        border-radius: 2px;
        padding: 0px 3px;
      }
      .clear {
        clear: both;
      }
      .main {
        width: 100%;
        min-height: 300px;
      }
      .main > div {
        float: left;
      }
      .main .left {
        display: block;
        width: 200px;
        text-align: left;
        border-right: 1px solid black;
        margin-top: 15px;
      }
      .main .content {
        display: block;
        width: calc(100% - 220px);
        padding: 15px 0 0 15px;
      }
      .footer {
        display: block;
        width: 100%;
        text-align: center;
        background-color: black;
        min-height: 50px;
        color: white;
      }
    </style>
  </head>
  <body>
    <div class="header clear">
      <ul class="menu">
        <li>CoreConcepts</li>
        <li>HandsOn</li>
        <li>CDN</li>
        <li>Contact</li>
      </ul>
    </div>
    <div class="main clear">
      <div class="left">
        <ul class="submenu">
          <li>Theory</li>
          <li>Binding</li>
          <li>Templating</li>
          <li>
            events
            <ul>
              <li>Value Controls</li>
              <li>Dataset controls</li>
            </ul>
          </li>
          <li>
            Spa
            <ul>
              <li>Page</li>
              <li>Routes</li>
            </ul>
          </li>
          <li>Ajax task and queuing</li>
          <li>Refs</li>
          <li>Dom By Xpath</li>
        </ul>
      </div>
      <div class="content">illustration</div>
    </div>
    <div class="footer clear">CopyRight2024@Caloch</div>
  </body>
</html>

 Demo

posted @ 2024-01-11 20:08  calochCN  阅读(42)  评论()    收藏  举报