I'm in the process of developing a forum and encountering some challenges with CSS.
My goal is to extend the white area all the way to the right edge of the gray background, leaving a gap of around 5px/10px. I've experimented with different CSS modifications but haven't been successful so far.
https://i.sstatic.net/fzEXC7E6.png
Here's my current CSS:
.poll-container {
margin-bottom: 10px;
}
.poll-content {
background-color: #fff;
padding: 10px;
border-radius: 5px;
}
I've tried options like adjusting the padding to 0x, but nothing seems to be working.