css to reduce margin of class container

Solutions on MaxInterview for css to reduce margin of class container by the best coders in the world

showing results for - "css to reduce margin of class container"
Alessia
10 Sep 2019
1<style type="text/css">
2    .container.custom-container {
3      padding: 0 50px;
4    }
5</style>
6
7<div class="container">
8  Here's a normal container
9</div>
10
11<div class="custom-container container">
12  Here's a custom container
13</div>
14