The list web part contents are vertical-align middle and no padding right. How do I apply CSS to the web part? I am on SP Online: Classic Experience.
I need to clarify. What is the specific code that adds the formatting to the list web part.
The web part id="WebPartWPQ1", so I put the following into a Script Editor web part:
<style type="text/css">
td#MSOZoneCell_WebPartWPQ1
{
vertical-align:top;
padding-right:0.2em;
}
</style>
Thanks.