Jump to content
  • 0

К кнопке не применяются стили


nightgremlin
 Share

Question

Почему-то в коде к кнопке button не подключаются стили:


<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Обработка HTML формы с помощью PHP</title>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
#div1{
position:absolute;
top:30%;
left:30%;
background:#c0c0c0;
width:400px;
padding:10px;
-moz-border-radius:10px; /* Радис скругления */
-webkit-border-radius:10px;
-khtml-border-radius:10px;
border-radius:10px;}
}
button.knopka{
background:#0000ff;
color:#ffffff;
padding:10px;
-moz-border-radius:10px; /* Радис скругления */
-webkit-border-radius:10px;
-khtml-border-radius:10px;
border-radius:10px;
margin-left:30px;
}
</style>
</head>
<body>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#sp1").click(function(){
$("#div1").show("clip",{},1000);
});
$("#but1").click(function(){
$("#div1").slideUp(1000);
});
});
</script>
<button id="sp1"class="knopka">Отправить почту</button >
<div id="div1" style="display:none;">
<form action="form_processing.php" method="post">
<p>Ваше имя:<br /><input type="text" name="your_name" /> </p>
<p>E-mail:<br /><input type="text" name="email" /></p>
<p>Тема:<br /><input type="text" name="tema" /></p>
<p>Сообщение:<br />
<textarea name="message" rows="5" cols="45"> </textarea></p>
<p><input type="submit" value="Отправить"><input type="button" id="but1" value="Закрыть окно"></input></p>
</form>
</div>
</body>
</html>

Вот строчка в коде:


<button id="sp1"class="knopka">Отправить почту</button>

А если применить стили напрямую, скажем вот так:


<button id="sp1"style="background:#0000ff;color:#ffffff; padding:10px;
-moz-border-radius:10px; -webkit-border-radius:10px; -khtml-border-radius:10px; border-radius:10px;
margin-left:30px;">Отправить почту</button >

то все проходит на ура. Но мне так не надо.

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Спасибо! А парился. Все-таки свежий взгляд неоценим. Порой не видишь элементарных вещей. Помогло.

Ещё один вопрос не в тему, но по коду. Если я прописываю в коде:

<input type="button" id="but1" value="Закрыть окно"></input>

то скрипт закрытия формы срабатывает. А если прописать вот такой код:

<button id="but1">Закрыть окно</button>

то он почему-то не пашет. Может кто объяснит причину?

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