You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/spfx/web-parts/basics/use-web-parts-full-width-column.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -7,17 +7,17 @@ ms.prod: sharepoint
7
7
8
8
# Use web parts with the full-width column
9
9
10
-
Modern SharePoint pages support layouts that allow users to organize the information they present on their pages. Users can choose from a number of different layouts, such as two columns, three columns or one-third column. Modern pages in communication sites offer users an additional page layout named **Full-width column**. This layout spans the full width of the page without any horizontal margin or padding. SharePoint Framework web parts can be placed in any layout, but due to its extra requirements, web parts must explicitly enable support for the full-width column.
10
+
Modern SharePoint pages support layouts that allow users to organize the information they present on their pages. Users can choose from a number of different section layouts such as two columns, three columns, or one-third column. Modern pages in communication sites offer an additional section layout named **Full-width column**. This layout spans the full width of the page without any horizontal margin or padding. SharePoint Framework web parts can be placed in any layout, but due to extra requirements, web parts must explicitly enable support for the full-width column.
11
11
12
12
## Layout requirements for the full-width column
13
13
14
-
One thing that regular layouts in modern SharePoint pages share, is the maximum width. To guarantee the ease of readability and usability, the body of a modern page doesn't expand beyond a certain width. When building web parts that will be used in regular layouts, you would test your web parts width the known maximum and minimum width constrains to ensure that they are displayed properly.
14
+
One thing that regular layouts in modern SharePoint pages share, is the maximum width. To guarantee the ease of readability and usability, the body of a modern page doesn't expand beyond a certain width. When building web parts that will be used in regular layouts, you test your web part's width against the known maximum and minimum width constraints to ensure that they are displayed properly.
15
15
16
-
When working with the full-width column layout, things become a bit more complicated, as that layout expands to the full width of the page. When displayed on an ultra-wide monitor, the full-width column could become even a few thousands pixels wide. This introduces additional testing requirements that you should take into account when building web parts that can be used in the full-width column.
16
+
When working with the full-width column layout, however, things become a bit more complicated as that layout expands to the full width of the page. When displayed on an ultra-wide monitor, the full-width column can even become a few thousands pixels wide. This introduces additional testing requirements that you should take into account when building web parts that can be used in the full-width column.
17
17
18
18
## Enable support for the full-width column
19
19
20
-
By default SharePoint Framework client-side web parts cannot be placed in the full-width column layout. To allow users to add your web part to the full-width column, in the web part manifest, set the `supportsFullBleed` property to `true`.
20
+
By default, SharePoint Framework client-side web parts cannot be placed in full-width column layouts. To allow users to add your web part to full-width columns, in the web part manifest set the `supportsFullBleed` property to `true`.
21
21
22
22
```json
23
23
{
@@ -49,8 +49,8 @@ By default SharePoint Framework client-side web parts cannot be placed in the fu
49
49
}
50
50
```
51
51
52
-
With this setting enabled, when you edit a page with a full-width column layout, your web part will be displayed among web parts that can be added to the column.
52
+
With this setting enabled, when you edit a page with a full-width column layout, your web part will be displayed among the web parts that can be added to the column.
53
53
54
54

55
55
56
-
At this moment, the SharePoint Workbench doesn't support testing web parts in the full-width column layout. Instead, you would have to deploy your web part to a developer tenant, create a communication site and test your web part in there.
56
+
>At this time, the SharePoint Workbench doesn't support testing web parts in the full-width column layout. Instead, you will have to deploy your web part to a developer tenant, create a communication site, and test your web part there.
0 commit comments