textarea,
select {
margin: 10px 0 0 0;
width: 100%;
display: inline;
}
The comment says - You should give the first 'input ’ a class of ‘inline.’ does it refers display property or what!
couldn’t understand what it refers…
textarea,
select {
margin: 10px 0 0 0;
width: 100%;
display: inline;
}
The comment says - You should give the first 'input ’ a class of ‘inline.’ does it refers display property or what!
couldn’t understand what it refers…
Please Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!
The instructions for this challenge:
Start, by giving the
input
elements in the secondfieldset
a class ofinline
.
This is an instruction to add HTML attributes, not to modify your CSS code.
In your HTML code, add class
attributes with the value inline
to the input
elements which are inside the second fieldset
element.
For future reference, it’s easier for us to help you if you use the built-in help function, which can be accessed by clicking on the Help icon (which appears after you have submitted incorrect code three times).
This will create a forum post which automatically includes your full code, a direct link to the challenge and an opportunity for you to describe your issue in detail.
Give class attribute with the value inline, to your radio type input in html …
@krajeswari492
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.