Base: Example of border-radius on iframe and canvas elements

This commit is contained in:
MacDue 2022-07-04 21:12:27 +01:00 committed by Andreas Kling
parent 304e0966aa
commit b6f2ba6917
Notes: sideshowbarker 2024-07-17 09:42:30 +09:00

View file

@ -332,6 +332,21 @@
<br>
<br>
<p>All these are non-conventional elements with a border-radius :^)<p>
<em>iframe to the welcome page</em>
<br>
<iframe style="border-radius: 50%; border: none; width: 300px; height: 200px;" src="welcome.html"></iframe>
<br>
<em>Fun canvas demo</em>
<br>
<canvas id="fun-canvas" style="border-radius: 30%;" width="200" height="200"></canvas>
<script src="fun-canvas.js"></script>
<script>
makeFunCanvas("fun-canvas")
</script>
<br/>
<br/>
<p>The boxes are 50x50px</p>
<em>All round 10px</em>
<div class="box box-1"></div>