관리자: 따옴표 등 작업
This commit is contained in:
36
test.php
36
test.php
@ -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>
|
||||
Reference in New Issue
Block a user