# cnwza-template
**Repository Path**: netjoin/cnwza-template
## Basic Information
- **Project Name**: cnwza-template
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2022-02-22
- **Last Updated**: 2022-02-28
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# 适老化单列网页样式模板参考
本示例原始页面网址
http://jtgl.beijing.gov.cn/
## 一、网页头部换行
### 1. 原始网页截图

### 2. 单列版设计

### 3. 处理规范说明
logo、搜索框和其他链接区块分别各占独立的一行;
宽度为页面宽度的 60%;
如果 logo 过窄,可以和搜索框放在同一行;
链接文字大小调整到 24px,行高为字高的 2 倍。
### 4. CSS 代码示例
#### a. logo
HTML 代码
```html
```
首先单独为一行,宽度设置为 100%,文本方向居中
```css
body.useOldFixed .syLogo {
display: block;
width: 100%;
text-align: center;
}
```
然后设置图片宽度为 60%
```css
body.useOldFixed .syLogo img {
width: 60%;
height: auto !important;
}
```
#### b. 搜索框
HTML 代码
```html