Files
freeCodeCamp/guide/arabic/css/image-galleries/index.md
2018-10-16 21:32:40 +05:30

1.8 KiB

title, localeTitle
title localeTitle
Image Galleries معرض الصور

معرض الصور

يمكنك استخدام CSS لإنشاء معارض صور خاصة بك.

معرض الصور مثال

`<html>

<head> <style> div.gallery { margin: 5px; border: 1px solid #ccc; float: left; width: 180px; }

div.gallery:hover { border: 1px solid #777; }

div.gallery img { width: 100%; height: 150px; }

div.desc { padding: 15px; text-align: center; } </style>

</head>
Image of staring cat
Add a description of the image here
Image of fat cat
Add a description of the image here
Image of frolicking cat
Add a description of the image here
Image of wide-eyed cat
Add a description of the image here
</html> `

النتائج:

معرض القطط

معلومات اكثر:

https://www.w3schools.com/css/css image gallery.asp