Hello guys i want that my image is align vertically when the screen size is smaller than ... ! But it do not work. Im pretty new in TailwindCSS that's why i have no clue what's wrong or what i could do better.
What i want: The picture should be down there like here.
My code:
HTML
<div class="grid grid-cols-2 pl-20">
<div class="center p-8">
<h1 class="text-5xl font-bold">Hello this is a example</h1>
</div>
<div class="test center-img mx-8">
<img src="assets/security.svg" alt="">
</div>
</div>
CSS
.test {
display: block;
}
.center-img {
margin: auto;
width: 80%;
}
I do not break. Why?
Thank you for help :)