Files
egbim_homepage/eng/tolltip_test.php
T
2026-07-23 16:15:57 +09:00

24 lines
895 B
PHP

<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>툴팁 테스트</title>
<!-- Tailwind 3.x CDN -->
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="flex items-center justify-center h-screen bg-gray-100">
<div class="flex items-center">
<label class="w-28 flex items-center">
정보파일
<span class="ml-2 relative group cursor-pointer">
<span class="w-5 h-5 flex items-center justify-center bg-blue-100 rounded-full text-blue-700 font-bold">i</span>
<span class="absolute left-1/2 -translate-x-1/2 top-7 z-50 hidden group-hover:block bg-gray-800 text-white text-xs rounded py-1 px-2 whitespace-nowrap shadow-lg">
2 이상의 파일을 업로드 압축파일 형태로 업로드해주세요
</span>
</span>
:
</label>
</div>
</body>
</html>