-1

i am trying to use bootstrap for the first time in my life and i have a problem with bootstrap grid. When i try to insert - a href="#" tag -into grid it deform it and i really dont know why is that happening. Please help me i am trying to solve this problem for like 2 days.

Normal - this is how does it look without

Deformed - this is what happens after puting tag.

1 Answers1

0

So i finally find out a solution for this, it just needed to set all anchor tags to display: contents;. It still didnt give me answer for why is all wrapping into anchor tags but it solve my problem of grid deformation. So for everyone who has the same problem (tbh i dont think there is someone) this is the solution. in css file or in style on your page -

a{
display: contents;
}