Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <style> .avatar-table { width: 100%; border-collapse: collapse; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; text-align: left; } .avatar-table thead th { padding: 12px 15px; border-bottom: 2px solid #e0e0e0; color: #666; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; } .avatar-table tbody td { padding: 12px 15px; border-bottom: 1px solid #f0f0f0; vertical-align: middle; /* Ensures cells are aligned nicely */ } .avatar-table tbody tr:last-child td { border-bottom: none; } .avatar-table tbody tr:hover { background-color: #f8f9fa; } /* ---- The main styling for the avatar and text group ---- */ .user-profile { display: flex; align-items: center; } .user-profile .avatar { width: 40px; height: 40px; border-radius: 50%; /* This makes the image circular */ object-fit: cover; /* Prevents the image from being distorted */ margin-right: 15px; } .user-profile .user-details { display: flex; flex-direction: column; } .user-profile .user-name { font-weight: 600; color: #333; } .user-profile .user-role { font-size: 0.9rem; color: #777; } </style> <table class="avatar-table"> <thead> <tr> <th scope="col">Member</th> <th scope="col">Department</th> <th scope="col">Contact</th> </tr> </thead> <tbody> <tr> <td> <div class="user-profile"> <img src="https://placehold.co/40/2c3e50/ffffff?text=AW" alt="Avatar for Alice Williams" class="avatar"> <div class="user-details"> <span class="user-name">Alice Williams</span> <span class="user-role">Lead Developer</span> </div> </div> </td> <td>Engineering</td> <td>alice.w@example.com</td> </tr> <tr> <td> <div class="user-profile"> <img src="https://placehold.co/40/e74c3c/ffffff?text=BJ" alt="Avatar for Bob Johnson" class="avatar"> <div class="user-details"> <span class="user-name">Bob Johnson</span> <span class="user-role">Marketing Manager</span> </div> </div> </td> <td>Marketing</td> <td>bob.j@example.com</td> </tr> <tr> <td> <div class="user-profile"> <img src="https://placehold.co/40/2ecc71/ffffff?text=CS" alt="Avatar for Charlie Smith" class="avatar"> <div class="user-details"> <span class="user-name">Charlie Smith</span> <span class="user-role">UX Designer</span> </div> </div> </td> <td>Design</td> <td>charlie.s@example.com</td> </tr> <tr> <td> <div class="user-profile"> <img src="https://placehold.co/40/9b59b6/ffffff?text=DM" alt="Avatar for Diana Miller" class="avatar"> <div class="user-details"> <span class="user-name">Diana Miller</span> <span class="user-role">HR Specialist</span> </div> </div> </td> <td>Human Resources</td> <td>diana.m@example.com</td> </tr> </tbody> </table>