Để thêm hình ảnh đường viền trong CSS3, hãy sử dụng thuộc tính hình ảnh đường viền. Nó là một thuộc tính viết tắt cho các thuộc tính sau -
border-image-source border-image-slice border-image-width border-image-outset border-image-repeat
Các giá trị có thể được đặt thành;
border-image: source slice width outset repeat|initial|inherit;
Ví dụ
Bây giờ chúng ta hãy xem một ví dụ -
<!DOCTYPE html> <html> <head> <style> #demo { border: 20px solid; padding: 20px; border-image: url(https://www.tutorialspoint.com/images/home_ai_python.png) 20 round; } </style> </head> <body> <h1>PyTorch Tutorial</h1> <p>PyTorch is an open source machine learning library for Python and is completely based on Torch.</p> <p id="demo">It is primarily used for applications such as natural language processing.</p> </body> </html>
Đầu ra
Ví dụ
Bây giờ chúng ta hãy xem một ví dụ khác -
<!DOCTYPE html> <html> <head> <style> #demo { border: 20px solid; padding: 20px; border-image: url(https://www.tutorialspoint.com/images/home_pytorch.png) 40% round; } </style> </head> <body> <h1>TensorFlow Tutorial</h1> <p>TensorFlow is an open source machine learning framework for all developers. It is used for implementing machine learning and deep learning applications.</p> <p id="demo"> To develop and research on fascinating ideas on artificial intelligence, Google team created TensorFlow. </p> </body> </html>
Đầu ra