Sau đây là mã để thêm đường viền vào hình ảnh bằng CSS -
Ví dụ
<!DOCTYPE html> <html> <head> <style> img { border: 8px solid rgb(0, 238, 255); width: 400px; height: 400px; } </style> </head> <body> <h1>Border Around Image Example</h1> <img src="https://images.pexels.com/photos/34950/pexels-photo.jpg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940"> </body> </html>
Đầu ra
Đoạn mã trên sẽ tạo ra kết quả sau -