Is there a way to create space between icons that are in an inline block without them touching each other? One solution could be to add a container around each icon, center the icons within the containers, and then place the containers in the block.
You can find a code example here: https://jsfiddle.net/mfw3ntnm/
.foot-bar {
position: fixed;
bottom: 100px;
display: inline-block;
}
.image-holder {
width: 150px;
height: 150px;
align-content: center;
}
However, adding the "image-holder" class seems to cause formatting issues with the inline block display. The goal is to wrap the images in a container and center them while maintaining the inline-block format. Any suggestions on how to achieve this?