Is it possible to set the block content width to 760px (best for line length) and center it horizontally on the page using only Bootstrap 4 without custom CSS?
When using the "col-8" class, the block content is 730px wide. When applying the "col-10 px-5" classes, the content of the block becomes 853.984px wide.
While in CSS it is easy:
div{
margin:0 auto;
max-width:760px
}