0
How to center form?
I was searching for that and I didn't find anything. How to do that?(without using JS and apsolut)
8 Answers
0
Found here by searching CodePlayground:
https://code.sololearn.com/W51CLpHyrWy0/?ref=app
0
My form is "display: block;"
0
I just tried inserting a form at the spot the instructions indicate, then setting it to display:block.
It still works / doesn't appear to affect the containing div.
(Is the containing div strategy not acceptable?)
0
I try it's not work
0
See code
0
Note, I'm recommending using this pattern, which is working for me:
[HTML]
<body>
<div class="container">
<form> ... </form>
<form> ... </form>
</div>
</body>
[CSS]
.container{
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
0
It doesn't for me. I don't know why