如何使用 CSS 创建联系片?
联系片可以在网页上视为小型的联系人卡片。如果你要在一个网页上列出多个支持人员或团队成员,则要正确对齐其详细信息,请使用联系片。其中只包含姓名的小型个人资料图片。接下来看看如何使用 HTML 和 CSS 在网页上创建联系片。
创建容器
对于联系片,请创建单独的容器。首先,使用 <img> 元素包括个人资料图片。使用 src 属性添加个人资料图片的图片源 −
<div class="chip"> <img src="https://tutorialspoint.com/assets/profiles/123055/profile/200_187394-1565938756.jpg" alt ="Amit"> Amit Diwan </div> <div class="chip"> <img src="https://cdn.pixabay.com/photo/2014/03/24/17/19/teacher-295387__340.png" alt="Britney"> Britney Smith </div>
定位联系片
要定位联系片,最佳的解决方案是将 display 属性设为 inline-block。要设计联系片,请使用 border-radius 属性 −
.chip { display: inline-block; padding: 0 25px; height: 50px; font-size: 20px; font-weight: bold; line-height: 50px; border-radius: 25px; background-color: #6a0074; color: white; }
定位联系图片
联系片上的个人资料图片使用 float 属性浮动在左侧,值为 left。此外,border-radius 又发挥了关键作用,用于塑造图片 −
.chip img { float: left; margin: 0 10px 0 -25px; height: 50px; width: 50px; border-radius: 50%; }
示例
使用 CSS 创建联系片,代码如下 −
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> body{ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin:25px; } .chip { display: inline-block; padding: 0 25px; height: 50px; font-size: 20px; font-weight: bold; line-height: 50px; border-radius: 25px; background-color: #6a0074; color: white; } .chip img { float: left; margin: 0 10px 0 -25px; height: 50px; width: 50px; border-radius: 50%; } </style> </head> <body> <h1>Contact chip Example</h1> <div class="chip"> <img src="https://cdn.pixabay.com/photo/2016/08/08/09/17/avatar-1577909__340.png"> James Anderson </div> <div class="chip"> <img src="https://cdn.pixabay.com/photo/2014/03/24/17/19/teacher-295387__340.png"> Britney Smith </div> </body> </html>
广告