Jump to content
  • 0

Не изменяются submit'ы из css


willfill
 Share

Question

Не могу понять в чем проблема, есть css


.forms input[type="text"], .forms input[type="password"]{
height: 24px;
font-size: 14px;
width: 400px;
border: 1px solid #cccccc;
}

.forms input[type="submit"]{
margin-top: 20px;
display: block;
width: 120px;
height: 50px;
font-size: 14px;

}

и html


<form class="forms" action="" method="POST">
<input type="text" name="email" id="id_email" />
<input type="submit" value="Зарегистрировать" />
</form>

текстовые инпуты нормально кастомизируются, а вот у сабмита не получается задать ни высоту ни шрифт, только ширина работает

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

Создал отдельный html файл и рядом css(т.к. выше кусок из большого шаблона),

--testsubmit

—-111.html

—-style.css

вот полный исходник хтмлки:


<!DOCTYPE html>
<html>
<head>
<link href="style.css" rel="stylesheet" media="all" />
</head>
<body>
<div id="wrapper">
<form class="forms" action="" method="POST">
<input type="text" name="email" id="id_email" />
<input type="submit" value="Зарегистрировать" />
</form>
</div>
</body>
</html>

и style.css


.forms input[type="text"], .forms input[type="password"]{
height: 24px;
font-size: 14px;
width: 400px;
border: 1px solid #cccccc;
}

.forms input[type="submit"]{
margin-top: 20px;
display: block;
width: 120px;
height: 90px;
font-size: 14px;
}

Вроде бы все должно работать, но не хочет)

результат:

screendsd.png

Edited by willfill
Link to comment
Share on other sites

  • 0

После недолгого гугления наткнулся на http://stackoverflow.com/questions/1682520/css-how-to-increase-the-size-of-a-osx-submit-button, где как я понял говорится о том, что в сафари на маке нельзя кастомизировать по желанию сабмиты и кнопки, похоже хром тоже так же работает.

Добавил:

-webkit-appearance: button;

все заработало, но кнопка не макосовская стала)

p.s. отключал все расширения в хроме, а в сафари ни одного не стоит

Edited by willfill
  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy