Skip to content

Commit 2dd162b

Browse files
thechriskentVesaJuvonen
authored andcommitted
Minor grammatical updates (SharePoint#1618)
1 parent 5fb1249 commit 2dd162b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/spfx/web-parts/basics/use-web-parts-full-width-column.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ ms.prod: sharepoint
77

88
# Use web parts with the full-width column
99

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.
1111

1212
## Layout requirements for the full-width column
1313

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.
1515

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.
1717

1818
## Enable support for the full-width column
1919

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`.
2121

2222
```json
2323
{
@@ -49,8 +49,8 @@ By default SharePoint Framework client-side web parts cannot be placed in the fu
4949
}
5050
```
5151

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.
5353

5454
![Custom SharePoint Framework client-side web part displayed among web parts that can be added to a full-width column layout](../../../images/fullwidthcolumn-webpart-add.png)
5555

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

Comments
 (0)