Fieldset Size (HTML)

Solved
turtle -  
 Xx -
Hello,
I would like to know if it is possible to change the size of a fieldset (to prevent it from taking up the entire screen)
thank youConfiguration: Windows XP Firefox 2.0.0.5

1 answer

  1. Gihef Posted messages 5165 Status Contributor 2 781
     
    Hello,

    Yes, it's possible. As with many other tags.

    You can simply add a bit of "style" in the tag:
     <FIELDSET style="width:360px;">
    You can also do it in the header of the page, between <head> and </head>:
     fieldset { width : 70%; }
    Using "%" or "px".

    After going over this example, I suggest you check it out here.

    + http://www.aliasdmc.fr/balise/zone_html_fieldset.html
        cssintro
    --
    16
    1. Xx
       
      Thank you very much, it's great.
      0