Skip to content

Commit

Permalink
Merge branch 'main' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
ramiy authored Dec 15, 2023
2 parents 79d165b + 8eb8af7 commit 0c437bd
Show file tree
Hide file tree
Showing 106 changed files with 1,182 additions and 1,159 deletions.
4 changes: 0 additions & 4 deletions files/en-us/_redirects.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2174,7 +2174,6 @@
/en-US/docs/DOM/window.oncontextmenu /en-US/docs/Web/API/Element/contextmenu_event
/en-US/docs/DOM/window.ondevicemotion /en-US/docs/Web/API/Window/devicemotion_event
/en-US/docs/DOM/window.ondeviceorientation /en-US/docs/Web/API/Window/deviceorientation_event
/en-US/docs/DOM/window.ondragdrop /en-US/docs/Web/API/Window/ondragdrop
/en-US/docs/DOM/window.onerror /en-US/docs/Web/API/Window/error_event
/en-US/docs/DOM/window.onfocus /en-US/docs/Web/API/Window/focus_event
/en-US/docs/DOM/window.onhashchange /en-US/docs/Web/API/Window/hashchange_event
Expand Down Expand Up @@ -2608,7 +2607,6 @@
/en-US/docs/DOM:window.onclick /en-US/docs/Web/API/Element/click_event
/en-US/docs/DOM:window.onclose /en-US/docs/Web/API/HTMLDialogElement/close_event
/en-US/docs/DOM:window.oncontextmenu /en-US/docs/Web/API/Element/contextmenu_event
/en-US/docs/DOM:window.ondragdrop /en-US/docs/Web/API/Window/ondragdrop
/en-US/docs/DOM:window.onerror /en-US/docs/Web/API/Window/error_event
/en-US/docs/DOM:window.onfocus /en-US/docs/Web/API/Window/focus_event
/en-US/docs/DOM:window.onkeydown /en-US/docs/Web/API/Element/keydown_event
Expand Down Expand Up @@ -3329,7 +3327,6 @@
/en-US/docs/Document_Object_Model_(DOM)/window.oncontextmenu /en-US/docs/Web/API/Element/contextmenu_event
/en-US/docs/Document_Object_Model_(DOM)/window.ondevicemotion /en-US/docs/Web/API/Window/devicemotion_event
/en-US/docs/Document_Object_Model_(DOM)/window.ondeviceorientation /en-US/docs/Web/API/Window/deviceorientation_event
/en-US/docs/Document_Object_Model_(DOM)/window.ondragdrop /en-US/docs/Web/API/Window/ondragdrop
/en-US/docs/Document_Object_Model_(DOM)/window.onerror /en-US/docs/Web/API/Window/error_event
/en-US/docs/Document_Object_Model_(DOM)/window.onfocus /en-US/docs/Web/API/Window/focus_event
/en-US/docs/Document_Object_Model_(DOM)/window.onhashchange /en-US/docs/Web/API/Window/hashchange_event
Expand Down Expand Up @@ -10848,7 +10845,6 @@
/en-US/docs/Web/API/window.oncontextmenu /en-US/docs/Web/API/Element/contextmenu_event
/en-US/docs/Web/API/window.ondevicemotion /en-US/docs/Web/API/Window/devicemotion_event
/en-US/docs/Web/API/window.ondeviceorientation /en-US/docs/Web/API/Window/deviceorientation_event
/en-US/docs/Web/API/window.ondragdrop /en-US/docs/Web/API/Window/ondragdrop
/en-US/docs/Web/API/window.onerror /en-US/docs/Web/API/Window/error_event
/en-US/docs/Web/API/window.onfocus /en-US/docs/Web/API/Window/focus_event
/en-US/docs/Web/API/window.onhashchange /en-US/docs/Web/API/Window/hashchange_event
Expand Down
16 changes: 0 additions & 16 deletions files/en-us/_wikihistory.json
Original file line number Diff line number Diff line change
Expand Up @@ -67799,22 +67799,6 @@
"louisremi"
]
},
"Web/API/Window/ondragdrop": {
"modified": "2020-10-19T07:54:26.789Z",
"contributors": [
"SphinxKnight",
"hamoud333310",
"Sheppy",
"fscholz",
"teoli",
"cpigat",
"libreGeekingKid",
"Tprogers",
"Tobi",
"Nickolay",
"alecananian"
]
},
"Web/API/Window/online_event": {
"modified": "2020-10-15T21:20:36.089Z",
"contributors": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ To do this:
py -V
```

3. This should return a version number. If this is OK, navigate to the directory that your example is inside, using the `cd` command.
3. This should return a version number. If this is OK, navigate to the directory that contains the website code you want to test, using the `cd` command.

```bash
# include the directory name to enter it, for example
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/learn/css/css_layout/introduction/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ The methods that can change how elements are laid out in CSS are:
- **Floats** — Applying a {{cssxref("float")}} value such as `left` can cause block-level elements to wrap along one side of an element, like the way images sometimes have text floating around them in magazine layouts.
- **The {{cssxref("position")}} property** — Allows you to precisely control the placement of boxes inside other boxes. `static` positioning is the default in normal flow, but you can cause elements to be laid out differently using other values, for example, as fixed to the top of the browser viewport.
- **Table layout** — Features designed for styling parts of an HTML table can be used on non-table elements using `display: table` and associated properties.
- **Multi-column layout** — The [Multi-column layout](/en-US/docs/Web/CSS/CSS_multicol_layout) properties can cause the content of a block to layout in columns, as you might see in a newspaper.
- **Multi-column layout** — The [Multi-column layout](/en-US/docs/Web/CSS/CSS_multicol_layout) properties can cause the content of a block to lay out in columns, as you might see in a newspaper.

## The display property

Expand Down
Loading

0 comments on commit 0c437bd

Please sign in to comment.