Skip to content

Commit

Permalink
[ko] fix: Fix typo in css calc example code (#15938)
Browse files Browse the repository at this point in the history
fix: Fix typo in example code 

- Fix typo in example code's html id name.
  • Loading branch information
kwonsean authored Oct 10, 2023
1 parent 2247bf6 commit 164c0ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions files/ko/web/css/calc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ input {
width: calc(100% - 1em);
}

#formbox {
#form-box {
width: calc(100% / 6);
border: 1px solid black;
padding: 4px;
Expand All @@ -89,7 +89,7 @@ input {

```html
<form>
<div id="formBox">
<div id="form-box">
<label>뭔가 입력해 보세요.</label>
<input type="text" />
</div>
Expand Down

0 comments on commit 164c0ba

Please sign in to comment.