Я хочу использовать border-radius для моего документа, я изо всех сил пытался найти этот код при переполнении стека из здесь , но это приводит к следующему: output.pdf , почему?
<html> <head> <title>JS Bin</title> <style> .circle { border-radius: 50%; width: 250px;height: 250px; background-image:url("https://fiverr-res.cloudinary.com/t_profile_original,q_auto,f_auto/profile/photos/3864710/original/isurunix.png") } </style> </head> <body> <div class='circle'></div> </body> </html>
Обнаружена проблема, летающая тарелка устарела, извините за трату времени.
Это потому, что вы используете другую структуру.Попробуйте это:
.circle { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; width: 250px;height: 250px; background-image:url("https://fiverr-res.cloudinary.com/t_profile_original,q_auto,f_auto/profile/photos/3864710/original/isurunix.png") }