“Center Element wejściowy CSS” Kod odpowiedzi

Wyśrodkuj wejściowy CSS

input {  
  display: block;
  margin-right: auto;
  margin-left: auto;
}
farjallah haythem

Jak wyśrodkować dane wejściowe w CSS

input {
text-align: center;
}
Kind Kookaburra

Center Element wejściowy CSS

<html>
<head>
    <style>
        div.wrapper {
            width: 300px;
            height:300px;
            border:1px solid black;
        }

        input[type="range"] {
             display: block;
             margin : 0 auto;
        }

    </style>
</head>
<body>

    <div class='wrapper'>
        <input type='range' name='1-10' value='5' min='1' max='2' />
    </div>    


</body>
</html>
GrowlingTea

Odpowiedzi podobne do “Center Element wejściowy CSS”

Pytania podobne do “Center Element wejściowy CSS”

Więcej pokrewnych odpowiedzi na “Center Element wejściowy CSS” w CSS

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu