小公主练练看html

2023-03-22 11:35:55 浏览数 (1)

以下是一个简单的小公主练练看HTML代码示例:

代码语言:javascript复制
html
<!DOCTYPE html>  
<html lang="en">  
<head>  
    <meta charset="UTF-8">  
    <meta name="viewport" content="width=device-width, initial-scale=1.0">  
    <title>小公主练练看</title>  
    <style>  
        body {  
            font-family: Arial, sans-serif;  
        }  
  
        .container {  
            width: 300px;  
            padding: 16px;  
            background-color: white;  
            margin: 100px auto;  
            border: 1px solid black;  
            border-radius: 4px;  
        }  
  
        .princess {  
            position: relative;  
            width: 150px;  
            height: 150px;  
            border-radius: 50%;  
            background-color: red;  
            z-index: 999;  
        }  
  
        .arrow {  
            position: absolute;  
            top: 50px;  
            right: 200px;  
            width: 80px;  
            height: 80px;  
            border-radius: 50%;  
            background-color: #4CAF50%
z-index: 998;  
        }  

        .food {  
            position: absolute;  
            top: 50px;  
            left: 200px;  
            width: 80px;  
            height: 80px;  
            border-radius: 50%;  
            background-color: green;  
        }

0 人点赞