Centrer zone de saisie

Résolu
Bonjour,
Comment centrer une zone de saisie dans mon site s.v.p?

Configuration: Android / Chrome 95.0.4638.50


--
domingue2022

4 réponses

  1. Bonjour, tu peux partager ton code?
    0
    1. DOCTYPE html>
      <html lang="en">
      <head>
      <title>Search</title>
      </head>
      <body>
      <form

      action="http://images.google.com/images"> <input type="text" name="q" /> <input type="submit" value="search" /> </form>

      </form>
      </body>
      </html>

      0
      1. Le code css aussi.
        0
    2. En HTML:

      <html lang="en">
      <head>
      <title>Search</title>
      </head>
      <body>
      <form action="http://images.google.com/images" class= test> <input type="text" name="q" /> <input type="submit" value="search" /> </form>
      
      
      </form>
      </body>
      </html>


      en CSS:

      .test{
         margin: auto;
         width: 50%;
        padding: 10px;
      }
      1
      1. Merci à toi beam1916
        0