OfficeDev / office-ui-fabric-core

The front-end CSS framework for building experiences for Office and Microsoft 365.
https://developer.microsoft.com/en-us/fabric
Other
3.78k stars 465 forks source link

Do we support auto layout in office Fabric React - Grid layout #1238

Open taxiahou opened 3 years ago

taxiahou commented 3 years ago

Hi, team,

i am using ms-grid to implement a grid layout. Noticed that if i don't specify column width, even if one row has one column, i will not get full width. Is it by design or i miss anything here?

<div class="ms-Grid" dir="ltr">
  <div class="ms-Grid-row">
    <div class="ms-Grid-col">
      test
    </div>
  </div>
</div>