Jump to content
  • 0

Оформление блока


lindim
 Share

Question

4 answers to this question

Recommended Posts

  • 0

если не критично - сделайте на css3 (border-radius, -moz-border-radius, -webkit-border-radius, -o-border-radius), но поддерживается это только последними версиями браузеров (и то может не всех).

А так разрежьте блок на три: верхние углы, контент, нижние углы

Edited by Doka
Link to comment
Share on other sites

  • 0

Попробуйте этот вариант.

Стили доработаете, главное принцип.

Инпуты закругляются также, как и дивы, просто пропишите в стилях, типа этого:

.cen input {

border: 1px solid #ddd;

-webkit-border-radius: 3px;

-moz-border-radius: 3px;

border-radius: 3px;

}


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Вывод даты</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta http-equiv="content-style-type" content="text/css">
<meta http-equiv="content-script-type" content="text/javascript">
<link href="style.css" rel="stylesheet" type="text/css" media="all">

<style>

#myf {
position: absolute;
left: 300px;
top: 200px;
width: 300px;
height: 200px;
font-family: Arial;
border: 2px solid #ddd;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
.top {
position: relative;
width: 300px;
height: 40px;
font-size: 16px;
font-weight: bold;
color: #fff;
background: #2ce52c;
-webkit-border-radius: 8px 8px 0 0;
-moz-border-radius: 8px 8px 0 0;
border-radius: 8px 8px 0 0;
}
.cen {
position: relative;
padding-left: 20px;
font-size: 11px;
color: #818181;
width: 280px;
height: 110px;
}
.but {
position: relative;
padding-left: 20px;
font-size: 12px;
width: 280px;
height: 50px;
}
</style>
</head>

<body>
<form id="myf" name="f" action="....php" method="">
<div class="top"><br style="line-height: 8px">
<span style="margin-left: 20px;">Login</span>
</div>
<div class="cen"><br style="line-height: 16px">
<span>Login:</span><br>
<input name="login" type="text" style="width: 150px;"><br><br style="line-height: 6px">
<span>Password:</span><br>
<input name="pass" type="text" style="width: 150px;">
<input name="knopa" type="submit" value="OK">
</div>
<div class="but"><br style="line-height: 8px">
<a href="#">Register</a>    |    <a href="#">Forgot your Password?</a>
</div>
</form>
</body>
</html>

bkock.JPG

Edited by Aleksty
Link to comment
Share on other sites

  • 0

Спасибо, будем пробыват этот вариант.

Может еще кто-то предложит другой вариант чтобы всеми броузерами открывалось.

А форма должна быть резиновой по ширине?

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