Skip to content

Commit ea20017

Browse files
KL2400040448kinglokesh2203gmail.com
andauthored
Fix Q69 ambiguous box model question (#6923) (#7243)
Co-authored-by: kinglokesh2203gmail.com <your_email@example.com>
1 parent 32b3b83 commit ea20017

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

front-end-development/front-end-development-quiz.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -688,23 +688,23 @@ console.log(currencies);
688688
- [ ] Set `width: 100%` on the images.
689689
- [ ] Set `resize: true` on the images.
690690

691-
#### Q69. The CSS box model describes how different parts of a box are calculated. Under the standard box model, what is the total width of the content box plus padding (excluding border and margin) in the following CSS?
691+
#### Q69. Under the standard CSS box model, what is the total visible width of the element (content + padding + border), excluding margins?
692692

693693
```css
694694
box {
695695
width: 200px;
696696
padding: 10px;
697-
margin: 0 15px;
698697
border: 2px solid black;
698+
margin: 0 15px;
699699
}
700-
```
701-
702-
- [ ] 230px
703-
- [x] 220px
700+
```md
701+
- [x] 224px
704702
- [ ] 200px
703+
- [ ] 220px
705704
- [ ] 260px
706705

707706

707+
708708
#### Q70. How would you round the value 11.354 to the nearest full integer?
709709

710710
- [ ] round(11.354);

0 commit comments

Comments
 (0)