I have a simple page that flows the content into columns. Is there a way to apply an inner padding per column? I see the column-gap property, but that doesn't work for the left side of the first column I believe. Also I need my columns to be exactly 300px wide. This is my setup:
<html>
<head>
<style>
.columns {
column-width: 300px;
}
</style>
</head>
<body>
<div class="columns">
...
</div>
</body>
</html>
Ideally there would be some property like:
column-inner-padding: ...;
I can kind of get this to work by explicitly setting a padding on all elements within the columns, but that does not scale well:
.columnsParagraph {
padding-left: 20px;
padding-right: 20px;
}
...
<div class="columns">
<p class="columnsParagraph">...</p>
<p class="columnsParagraph">...</p>
<p class="columnsParagraph">...</p>
...
</div>
Thank you