首页
所有工具
关于我们
回到主站
HTML/CSS 练习工具
实时编辑HTML和CSS代码并查看效果,非常适合前端学习和练习
HTML 代码
<!-- 在此编写HTML代码 --> <div class="card"> <h2>欢迎使用练习工具</h2> <p>这是一个简单的卡片示例</p> <button>点击我</button> </div>
CSS 代码
/* 在此编写CSS代码 */ body { font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; min-height: 100vh; margin: 0; background-color: #f0f2f5; } .card { background: white; border-radius: 10px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); padding: 25px; text-align: center; max-width: 350px; width: 100%; } .card h2 { color: #2c3e50; margin-bottom: 15px; } .card p { color: #7f8c8d; margin-bottom: 20px; line-height: 1.6; } .card button { background: #3498db; color: white; border: none; padding: 12px 25px; border-radius: 50px; cursor: pointer; font-size: 1rem; transition: background 0.3s; } .card button:hover { background: #2980b9; }
实时预览
运行代码
重置代码
加载示例