28
Views
3
Comments
outsystems ui columns
Question
Application Type
Reactive

why this?

.osui-tabs__content-item .columns{

  max-width:99.99%;

}


on outsystems ui columns ? 

If you want full width , have to redefine css?

2025-04-17 05-42-16
Ajit Kurane

Hi,

If you want to make it full width, you can try updating the CSS rule to: 

.osui-tabs__content-item .columns {

  max-width: 100%;

}

An element with the class .osui-tabs__content-item .columns to 99.99%. This suggests that the element should be almost as wide as its container but not quite 100%. However, the decision to set it to 99.99% might have been intentional, possibly to avoid some rendering issues or to accommodate for other styling considerations. 

Thanks.

2024-01-05 16-00-17
Filipe Lourenço

Yes I know but what's the point?

2025-04-17 05-42-16
Ajit Kurane


Setting the max-width of an element to 99.99% instead of 100% is a common practice to avoid potential issues with rounding and precision in certain browsers or situations. It's often done to prevent horizontal scrollbars from appearing due to rounding errors or subpixel rendering.

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.