New to the world of HTML and CSS, I'm trying to replicate a design I came across online for some practice. The website layout includes images separated by borders, and I'm unsure if this particular design can be achieved using regular CSS alone or if additional tools like JavaScript are necessary. I attempted to use grid and added dotted borders, but it didn't turn out as expected.
.brands-sec .brands{
justify-items: center;
width: 70%;
margin: auto;
display: grid;
grid-template-columns: auto auto auto auto auto auto ;
padding: 10px;
column-gap: 0px;
row-gap: 0px;
}
.brands-sec .brands img{
border: 1px dotted #fff;
padding: 40px;
}