Jump to content

willfill

Newbie
  • Posts

    5
  • Joined

  • Last visited

willfill's Achievements

Explorer

Explorer (1/14)

1

Reputation

  1. После недолгого гугления наткнулся на http://stackoverflow.com/questions/1682520/css-how-to-increase-the-size-of-a-osx-submit-button, где как я понял говорится о том, что в сафари на маке нельзя кастомизировать по желанию сабмиты и кнопки, похоже хром тоже так же работает. Добавил: -webkit-appearance: button; все заработало, но кнопка не макосовская стала) p.s. отключал все расширения в хроме, а в сафари ни одного не стоит
  2. Спасибо, теперь уверен, что в исходниках нет ошибок), буду копать браузеры на косяки
  3. Создал отдельный 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; } Вроде бы все должно работать, но не хочет) результат:
  4. Mac OS X 10.7.3, Safari Version 5.1.5 (7534.55.3), Chrome 18.0.1025.165
  5. Не могу понять в чем проблема, есть 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> текстовые инпуты нормально кастомизируются, а вот у сабмита не получается задать ни высоту ни шрифт, только ширина работает
×
×
  • 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