# css-snippets **Repository Path**: penglianger/css-snippets ## Basic Information - **Project Name**: css-snippets - **Description**: 🎈 一些 css片段,可能是常见的,可能是有用的,更可能还是乱七八糟的 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-02 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # css-snippets ## Resize div 调整尺寸 ```css overflow: auto; resize: auto; ``` ## translate Center Vertically 不需要知道 `宽和高` 实现垂直水平居中 ```css position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); ```