관리자: 따옴표 등 작업

This commit is contained in:
whitedot
2012-12-26 21:19:19 +09:00
parent 32669ce3f3
commit f71c5ef21f
6 changed files with 38 additions and 18 deletions

View File

@ -1,5 +1,37 @@
<?
$str = "xx";
$len = 2;
echo ord($str{$len});
?>
//echo ord($str{$len});
?>
<!doctype html>
<html lang="ko">
<head>
<title>테스트</title>
<meta charset="utf-8">
<style>
input {
border-radius:7px; /*모서리 깍이는 정도*/
border:1px solid #dedede; /*선두께, 스타일(점선), 컬러*/
background-color:#f7f7f7; /*배경 컬러*/
padding:5px;
box-shadow:0 0 10px silver;
}
input:focus {
border-radius:7px; /*모서리 깍이는 정도*/
border:1px solid #ff3061; /*선두께, 스타일(점선), 컬러*/
background-color:#f7f7f7; /*배경 컬러*/
padding:5px;
box-shadow:0 0 10px #ff3061;
outline:0;
}
</style>
</head>
<body>
<input type="text">
<input type="checkbox">
</body>
</html>