Trong wordpress có hỗ trợ cắt image ra nhiều size mong muốn tuy nhiên cách này sẽ làm tăng dung lượng hosting và giải pháp ở đây là chúng ta chỉ cần dùng 3 size mặc định của wordpress đó là thumbnail, medium, large và full sau đó dùng css để làm việc này. Ngay sau đây mình xin chia sẽ cách làm
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Cách set size image cùng kích thước không bị vỡ hình với css fcwordpress.net</title> <style> .image-wrap { display: flex; flex-flow: row wrap; } .image-item { flex-basis: 20%; max-width: 25%; padding: 10px; } * { margin: 0; padding: 0; box-sizing: border-box; } img { max-width: 100%; object-fit: cover; width: 100%; height: 250px; object-position: 20px 20px; } </style> </head> <body> <div class="image-wrap"> <div class="image-item"> <div class="box-image" > <img src="https://fcwordpress.net/wp-content/uploads/2021/04/24_Marketing_1-1_course-Hero-11012021.jpg" /> </div> </div> <div class="image-item"> <div class="box-image" > <img src="https://fcwordpress.net/wp-content/uploads/2021/04/4_OnlineCourse-VideoOverlay-22122020.jpg" /> </div> </div> <div class="image-item"> <div class="box-image" > <img src="https://fcwordpress.net/wp-content/uploads/2021/04/4_OnlineCourse-Amanda_Borkin.jpg" /> </div> </div> <div class="image-item"> <div class="box-image" > <img src="https://fcwordpress.net/wp-content/uploads/2021/04/24_Marketing_1-1_course-Hero-11012021.jpg" /> </div> </div> <div class="image-item"> <div class="box-image" > <img src="https://fcwordpress.net/wp-content/uploads/2021/04/24_Marketing_1-1_course-Hero-11012021.jpg" /> </div> </div> <div class="image-item"> <div class="box-image" > <img src="https://fcwordpress.net/wp-content/uploads/2021/04/24_Marketing_1-1_course-Hero-11012021.jpg" /> </div> </div> <div class="image-item"> <div class="box-image" > <img src="https://fcwordpress.net/wp-content/uploads/2021/04/24_Marketing_1-1_course-Hero-11012021.jpg" /> </div> </div> <div class="image-item"> <div class="box-image" > <img src="https://fcwordpress.net/wp-content/uploads/2021/04/24_Marketing_1-1_course-Hero-11012021.jpg" /> </div> </div> <div class="image-item"> <div class="box-image" > <img src="https://fcwordpress.net/wp-content/uploads/2021/04/24_Marketing_1-1_course-Hero-11012021.jpg" /> </div> </div> <div class="image-item"> <div class="box-image" > <img src="https://fcwordpress.net/wp-content/uploads/2021/04/24_Marketing_1-1_course-Hero-11012021.jpg" /> </div> </div> </div> </body> </html> |
Mọi sự sao chép xin ghi rõ nguồn là fcwordpress.net
Chuyên trang về wordpress: hướng dẫn thiết kế theme, plugin, thủ thuật wordpress