mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-08-16 19:14:08 +02:00
feat: Update contents
This commit is contained in:
137
contents/close-button.mdx
Normal file
137
contents/close-button.mdx
Normal file
@@ -0,0 +1,137 @@
|
||||
---
|
||||
category: Display
|
||||
created: '2019-12-11'
|
||||
description: Create a close button with CSS flexbox
|
||||
keywords: css close button, css flexbox
|
||||
thumbnail: /assets/css-layout/thumbnails/close-button.png
|
||||
title: Close button
|
||||
---
|
||||
|
||||
## HTML
|
||||
|
||||
```html
|
||||
<button class="close-button">
|
||||
<div class="close-button__line close-button__line--first"></div>
|
||||
<div class="close-button__line close-button__line--second"></div>
|
||||
</button>
|
||||
```
|
||||
|
||||
## CSS
|
||||
|
||||
```css
|
||||
.close-button {
|
||||
/* Reset */
|
||||
background-color: transparent;
|
||||
border-color: transparent;
|
||||
|
||||
/* Cursor */
|
||||
cursor: pointer;
|
||||
|
||||
/* Size */
|
||||
height: 3rem;
|
||||
width: 3rem;
|
||||
|
||||
/* Used to position the inner */
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.close-button__line {
|
||||
/* Background color */
|
||||
background-color: #d1d5db;
|
||||
|
||||
/* Position */
|
||||
position: absolute;
|
||||
|
||||
/* Size */
|
||||
height: 1px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.close-button__line--first {
|
||||
/* Position */
|
||||
left: 0px;
|
||||
top: 50%;
|
||||
transform: translate(0%, -50%) rotate(45deg);
|
||||
|
||||
/* Size */
|
||||
height: 1px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.close-button__line--second {
|
||||
/* Position */
|
||||
left: 50%;
|
||||
top: 0px;
|
||||
transform: translate(-50%, 0%) rotate(45deg);
|
||||
|
||||
/* Size */
|
||||
height: 100%;
|
||||
width: 1px;
|
||||
}
|
||||
```
|
||||
|
||||
<Playground>
|
||||
```css styles.css hidden
|
||||
body {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
.close-button {
|
||||
/* Reset */
|
||||
background-color: transparent;
|
||||
border-color: transparent;
|
||||
|
||||
/* Cursor */
|
||||
cursor: pointer;
|
||||
|
||||
/* Size */
|
||||
height: 3rem;
|
||||
width: 3rem;
|
||||
|
||||
/* Used to position the inner */
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.close-button__line {
|
||||
/* Background color */
|
||||
background-color: #d1d5db;
|
||||
|
||||
/* Position */
|
||||
position: absolute;
|
||||
|
||||
/* Size */
|
||||
height: 1px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.close-button__line--first {
|
||||
/* Position */
|
||||
left: 0px;
|
||||
top: 50%;
|
||||
transform: translate(0%, -50%) rotate(45deg);
|
||||
|
||||
/* Size */
|
||||
height: 1px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.close-button__line--second {
|
||||
/* Position */
|
||||
left: 50%;
|
||||
top: 0px;
|
||||
transform: translate(-50%, 0%) rotate(45deg);
|
||||
|
||||
/* Size */
|
||||
height: 100%;
|
||||
width: 1px;
|
||||
}
|
||||
```
|
||||
|
||||
```html index.html hidden
|
||||
<button class="close-button">
|
||||
<div class="close-button__line close-button__line--first"></div>
|
||||
<div class="close-button__line close-button__line--second"></div>
|
||||
</button>
|
||||
```
|
||||
</Playground>
|
Reference in New Issue
Block a user