yes am trying to figure it out
now its okay. solved
At line 25, you have
<label id="radio" name="radio">Rdio</radio>
Double-check that closing tagâŚ
yes its solved i just dint save it. am working with the submit button
Getting ahead of me on that! Nice! lol
So youâre now looking at a grid, but that submit button doesnât work with the grid. You kind of want that element to span both columns of the grid, right? Too bad thereâs no easy way to make that happenâŚ
BUT WAIT!! THERE IS!!! lol We can style the submit button with three little styles:
form #submit {
grid-column: /* start column / span number of columns */;
width: /* How wide do you want the button itself? */;
}
So grid-column
lets us force this element either into another grid column, or to bridge multiple columns. If you do something like grid-column: 1 / span 2;
, then it will start in the first column and reach across BOTH columns.
how should i center the submit or should i add an element before it?
lol I was about to get to that too. If you set the left and right margins on the submit button to auto
, it will center in the available space.
still no change or maybe am wrong
scroll up in this a little, I had posted just before you asked about centering. read about grid-column, maybe four posts back.
thats how it loks still
So you have
grid-column: 1/2;
Which could work, but isnât quite what you want. That says âgo from the left edge of column 1 to the left edge of column 2â. Rather, use something like this:
grid-column: 1 / span 2;
Which says âgo from the left edge of column one, and span two columns.â
And then stick that margins: auto
back in to center itâŚ
yes it works now thank you
i will rebuild it again the project again somwhere
hi
i hope you had a good day.
I started the survey form again trying to make it differently from yesterdayâs topic and layout and am kinda stuck, Can you help me out please
Is it at the same codepen?
yes its the same codepen