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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
云风的 BLOG
云风的 BLOG
Microsoft Security Blog
Microsoft Security Blog
WordPress大学
WordPress大学
GbyAI
GbyAI
C
Check Point Blog
M
MIT News - Artificial intelligence
T
The Blog of Author Tim Ferriss
Jina AI
Jina AI
博客园 - 【当耐特】
U
Unit 42
月光博客
月光博客
腾讯CDC
Y
Y Combinator Blog
小众软件
小众软件
博客园_首页
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
The GitHub Blog
The GitHub Blog
博客园 - 聂微东
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
T
Tailwind CSS Blog

博客园 - 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)  评论()    收藏  举报