-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
963 lines (962 loc) Β· 70 KB
/
index.html
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CSS Articles by Temani Afif</title>
<link rel="icon" href="fav.png" sizes="any">
<meta name="monetization" content="$ilp.uphold.com/BKQpnDKX3xwQ">
<meta name="description" content="A wide range of articles covering many CSS Topics. From the basic to the advanced ones, all the CSS secrets are here.">
<meta name="author" content="Temani Afif">
<meta name="robots" content="index, follow">
<meta name="googlebot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1">
<meta name="bingbot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1">
<link rel=canonical href="https://css-articles.com" >
<meta property="og:locale" content="en_US" />
<meta property="og:title" content="CSS Articles by Temani Afif">
<meta property="og:type" content="website">
<meta property="og:url" content="https://css-articles.com">
<meta property="og:description" content="A wide range of articles covering many CSS Topics. From the basic to the advanced ones, all the CSS secrets are here.">
<meta property="og:image" content="https://css-articles.com/css-articles.jpg">
<meta property="og:image:width" content="1600" />
<meta property="og:image:height" content="800" />
<meta name="twitter:card" content="summary_large_image">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css">
<link rel="stylesheet" href="style.css?v=0.6">
</head>
<body>
<header>
<h1><span>C</span><span>S</span><span>S</span> Articles</h1>
<p>Written by Temani Afif</p>
</header>
<script async src="https://media.ethicalads.io/media/client/ethicalads.min.js"></script>
<div class="adaptive" data-ea-publisher="css-challengescom" id="css-articles" data-ea-type="text" style="margin: auto;min-height: 100px;width: fit-content;overflow:hidden;"></div>
<section class="container-fluid me">
<img src="img/avatar.png" alt="Temani Afif avatar" width="240" height="240">
<div>
<p>My name is <strong>Temani Afif</strong> and I am a CSS addict writing articles for <a href="https://css-tricks.com/author/afiftemani/" target="_blank">CSS Tricks</a>, <a href="https://www.smashingmagazine.com/author/temani-afif/" target="_blank">Smashing Magazine</a>, <a href="https://verpex.com/blog/author/temani-afif" target="_blank">Verpex</a>, <a href="https://www.freecodecamp.org/news/author/temani-afif/" target="_blank">Freecodecamp</a>, <a href="https://frontendmasters.com/blog/author/temaniafif/" target="_blank">Frontend Masters</a>, <a href="https://www.sitepoint.com/author/temani-afif/" target="_blank">Sitepoint</a>, and <a href="https://dev.to/afif" target="_blank">DEV</a>. Yes, I have an <a href="https://css-articles.com/feed.xml" target="_blank">RSS feed</a></p>
<p>Do you want to support me? <a href="https://support.temani-afif.com/" target="_blank">Buy me a coffee</a></p>
<p>Don't know what to read? <a href="https://random.css-articles.com/" target="_blank">Get a random CSS article</a></p>
<p>I am also the developer behind: <a href="https://css-challenges.com/" target="_blank">CSS Challenges</a> | <a href="https://css-generators.com/" target="_blank">CSS Generators</a> | <a href="https://css-tip.com/" target="_blank">CSS Tip</a> | <a href="https://css-pattern.com/" target="_blank">CSS Pattern</a> | <a href="https://css-loaders.com/" target="_blank">CSS Loaders</a> | <a href="https://css-shape.com/" target="_blank">CSS Shape</a> | <a href="https://css-games.com/" target="_blank">CSS Games</a> | <a href="https://css-only.art/" target="_blank">CSS Art</a> </p>
</div>
</section>
<input type="radio" id="all" name="article" class="hide" checked aria-hidden="true">
<input type="radio" id="css-tricks" name="article" class="hide" aria-hidden="true">
<input type="radio" id="dev" name="article" class="hide" aria-hidden="true">
<input type="radio" id="verpex" name="article" class="hide" aria-hidden="true">
<input type="radio" id="freecodecamp" name="article" class="hide" aria-hidden="true">
<input type="radio" id="sitepoint" name="article" class="hide" aria-hidden="true">
<input type="radio" id="smashingmagazine" name="article" class="hide" aria-hidden="true">
<input type="radio" id="frontendmasters" name="article" class="hide" aria-hidden="true">
<nav aria-hidden="true" class="container-fluid">
<ul>
<li><label for="all">All</label></li>
<li><label for="css-tricks"><img src="img/css-tricks.jpg" alt="CSS-Tricks" width="35" height="35"> CSS Tricks </label></li>
<li><label for="smashingmagazine"><img src="img/smash.png" alt="smashing Magazine" width="35" height="35"> Smashing Magazine </label></li>
<li><label for="verpex"><img src="img/verpex.png" alt="Verpex" width="35" height="35"> Verpex </label></li>
<li><label for="freecodecamp"><img src="img/freecodecamp.jpg" alt="freeCodeCamp" width="35" height="35"> freeCodeCamp </label></li>
<li><label for="frontendmasters"><img src="img/f-master.png" alt="frontend masters" width="35" > Fontend Masters </label></li>
<li><label for="sitepoint"><img src="img/sitepoint.png" alt="sitepoint" width="35" height="35">Sitepoint </label></li>
<li><label for="dev"><img src="img/dev.jpg" alt="DEV" width="35" height="35"> DEV </label></li>
</ul>
</nav>
<main class="container-fluid">
<article data-type="frontendmasters">
<a href="https://frontendmasters.com/blog/custom-progress-element-using-anchor-positioning-scroll-driven-animations/" target="_blank"><img class="featured" src="img/progress.webp" alt="Custom Progress Element Using Anchor Positioning & Scroll-Driven Animations" loading="lazy"></a>
<div>
<time datetime="2024-11-13">Nov 13, 2024 </time>
<h2><a href="https://frontendmasters.com/blog/custom-progress-element-using-anchor-positioning-scroll-driven-animations/" target="_blank">Custom Progress Element Using Anchor Positioning & Scroll-Driven Animations</a></h2>
</div>
</article>
<article data-type="freecodecamp">
<a href="https://www.freecodecamp.org/news/filling-css-loaders/" target="_blank"><img class="featured" src="img/filling-loader.jpeg" alt="How to Create Filling CSS Loaders Using One Element" loading="lazy"></a>
<div>
<time datetime="2024-10-23">Oct 23, 2024 </time>
<h2><a href="https://www.freecodecamp.org/news/filling-css-loaders/" target="_blank">How to Create Filling CSS Loaders Using One Element</a></h2>
</div>
</article>
<article data-type="freecodecamp">
<a href="https://www.freecodecamp.org/news/rounded-and-curved-edge-css-shapes/" target="_blank"><img class="featured" src="img/curved-rounded.jpeg" alt="Curved and Rounded Edge Shapes Using CSS" loading="lazy"></a>
<div>
<time datetime="2024-10-14">Oct 14, 2024 </time>
<h2><a href="https://www.freecodecamp.org/news/rounded-and-curved-edge-css-shapes/" target="_blank">How to Create Curved-Edge and Rounded-Edge Shapes Using CSS</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/css-tricks-that-use-only-one-gradient/" target="_blank"><img class="featured" src="img/gradient-pattern.png" alt="CSS Tricks That Use Only One Gradient" loading="lazy"></a>
<div>
<time datetime="2024-10-11">Oct 11, 2024</time>
<h2><a href="https://css-tricks.com/css-tricks-that-use-only-one-gradient/" target="_blank">CSS Tricks That Use Only One Gradient</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/how-to-create-shapes-with-inner-curves-using-css-mask" target="_blank"><img class="featured" src="img/innner-curves.jpg" alt="How to create Shapes with Inner Curves using CSS Mask" loading="lazy"></a>
<div>
<time datetime="2024-09-25">Sep 25, 2024 </time>
<h2><a href="https://verpex.com/blog/website-tips/how-to-create-shapes-with-inner-curves-using-css-mask" target="_blank">How to create Shapes with Inner Curves using CSS Mask</a></h2>
</div>
</article>
<article data-type="frontendmasters">
<a href="https://frontendmasters.com/blog/custom-range-slider-using-anchor-positioning-scroll-driven-animations/" target="_blank"><img class="featured" src="img/wobble-thumb.webp" alt="Custom Range Slider Using Anchor Positioning & Scroll-Driven Animations" loading="lazy"></a>
<div>
<time datetime="2024-08-21">Aug 21, 2024 </time>
<h2><a href="https://frontendmasters.com/blog/custom-range-slider-using-anchor-positioning-scroll-driven-animations/" target="_blank">Custom Range Slider Using Anchor Positioning & Scroll-Driven Animations</a></h2>
</div>
</article>
<article data-type="frontendmasters">
<a href="https://frontendmasters.com/blog/how-to-get-the-width-height-of-any-element-in-only-css/" target="_blank"><img class="featured" src="img/width-height.webp" alt="How to Get the Width/Height of Any Element in Only CSS" loading="lazy"></a>
<div>
<time datetime="2024-07-25">Jul 25, 2024 </time>
<h2><a href="https://frontendmasters.com/blog/how-to-get-the-width-height-of-any-element-in-only-css/" target="_blank">How to Get the Width/Height of Any Element in Only CSS</a></h2>
</div>
</article>
<article data-type="frontendmasters">
<a href="https://frontendmasters.com/blog/how-keyboard-navigation-works-in-a-css-game/" target="_blank"><img class="featured" src="img/game.webp" alt="How Keyboard Navigation Works in a CSS Game" loading="lazy"></a>
<div>
<time datetime="2024-07-08">Jul 08, 2024 </time>
<h2><a href="https://frontendmasters.com/blog/how-keyboard-navigation-works-in-a-css-game/" target="_blank">How Keyboard Navigation Works in a CSS Game</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/how-to-create-cut-out-shapes-using-the-clip-path-property" target="_blank"><img class="featured" src="img/cutout-shape.jpg" alt="How To Create Cut-Out Shapes using The clip-path property" loading="lazy"></a>
<div>
<time datetime="2024-06-18">Jun 18, 2024 </time>
<h2><a href="https://verpex.com/blog/website-tips/how-to-create-cut-out-shapes-using-the-clip-path-property" target="_blank">How To Create Cut-Out Shapes using The clip-path property</a></h2>
</div>
</article>
<article data-type="smashingmagazine">
<a href="https://www.smashingmagazine.com/2024/05/modern-guide-making-css-shapes/" target="_blank"><img class="featured" src="img/modern-guide-making-css-shapes.jpg" alt="The Modern Guide For Making CSS Shapes" loading="lazy"></a>
<div>
<time datetime="2024-05-10">May 10, 2024 </time>
<h2><a href="https://www.smashingmagazine.com/2024/05/modern-guide-making-css-shapes/" target="_blank">The Modern Guide For Making CSS Shapes</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/css-shapecom-the-ultimate-collection-of-css-only-shapes-52p5" target="_blank"><img class="featured" src="img/css-shapes.jpg" alt="CSS Shapes" loading="lazy"></a>
<div>
<time datetime="2024-04-22">Apr 22, 2024 </time>
<h2><a href="https://dev.to/afif/css-shapecom-the-ultimate-collection-of-css-only-shapes-52p5" target="_blank">css-shape.com: The Ultimate Collection of CSS-only Shapes</a></h2>
</div>
</article>
<article data-type="smashingmagazine">
<a href="https://www.smashingmagazine.com/2024/04/sliding-3d-image-frames-css/" target="_blank"><img class="featured" src="img/sliding-3d-image-frames-css.jpg" alt="Sliding 3D Image Frames In CSS" loading="lazy"></a>
<div>
<time datetime="2024-04-12">Apr 12, 2024 </time>
<h2><a href="https://www.smashingmagazine.com/2024/04/sliding-3d-image-frames-css/" target="_blank">Sliding 3D Image Frames In CSS</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/css-tricks-to-master-the-clip-path-property" target="_blank"><img class="featured" src="img/master-clip-path.jpg" alt="CSS Tricks To Master The clip-path Property" loading="lazy"></a>
<div>
<time datetime="2024-04-11">Apr 11, 2024 </time>
<h2><a href="https://verpex.com/blog/website-tips/css-tricks-to-master-the-clip-path-property" target="_blank">CSS Tricks To Master The clip-path Property</a></h2>
</div>
</article>
<article data-type="frontendmasters">
<a href="https://frontendmasters.com/blog/creating-wavy-circles-with-fancy-animations/" target="_blank"><img class="featured" src="img/wavy-thumb.webp" alt="Creating Wavy Circles with Fancy Animations in CSS" loading="lazy"></a>
<div>
<time datetime="2024-03-15">Mar 15, 2024 </time>
<h2><a href="https://frontendmasters.com/blog/creating-wavy-circles-with-fancy-animations/" target="_blank">Creating Wavy Circles with Fancy Animations in CSS</a></h2>
</div>
</article>
<article data-type="smashingmagazine">
<a href="https://www.smashingmagazine.com/2024/03/modern-css-tooltips-speech-bubbles-part2/" target="_blank"><img class="featured" src="img/modern-css-tooltips-speech-bubbles.jpg" alt="Modern CSS Tooltips And Speech Bubbles" loading="lazy"></a>
<div>
<time datetime="2024-03-08">Mar 08, 2024 </time>
<h2><a href="https://www.smashingmagazine.com/2024/03/modern-css-tooltips-speech-bubbles-part2/" target="_blank">Modern CSS Tooltips And Speech Bubbles (Part 2)</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/do-you-need-a-tooltip-or-a-speech-bubble-i-have-created-100-using-css-2l17" target="_blank"><img class="featured" src="img/tooltip-banner.jpg" alt="CSS tooltip collection" loading="lazy"></a>
<div>
<time datetime="2024-03-04">Mar 04, 2024 </time>
<h2><a href="https://dev.to/afif/do-you-need-a-tooltip-or-a-speech-bubble-i-have-created-100-using-css-2l17" target="_blank">Do you need a Tooltip or a Speech Bubble? I have created 100 using CSS π²</a></h2>
</div>
</article>
<article data-type="smashingmagazine">
<a href="https://www.smashingmagazine.com/2024/03/modern-css-tooltips-speech-bubbles-part1/" target="_blank"><img class="featured" src="img/modern-css-tooltips-speech-bubbles.jpg" alt="Modern CSS Tooltips And Speech Bubbles" loading="lazy"></a>
<div>
<time datetime="2024-03-01">Mar 01, 2024 </time>
<h2><a href="https://www.smashingmagazine.com/2024/03/modern-css-tooltips-speech-bubbles-part1/" target="_blank">Modern CSS Tooltips And Speech Bubbles (Part 1)</a></h2>
</div>
</article>
<article data-type="frontendmasters">
<a href="https://frontendmasters.com/blog/creating-flower-shapes-using-css-mask-trigonometric-functions" target="_blank"><img class="featured" src="img/flowers-thumb.webp" alt="Creating Flower Shapes using CSS Mask & Trigonometric Functions" loading="lazy"></a>
<div>
<time datetime="2024-02-29">Feb 29, 2024 </time>
<h2><a href="https://frontendmasters.com/blog/creating-flower-shapes-using-css-mask-trigonometric-functions" target="_blank">Creating Flower Shapes using CSS Mask & Trigonometric Functions</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/css-shapes-the-triangle" target="_blank"><img class="featured" src="img/triangle-shape.jpg" alt="CSS Shapes: The Triangle" loading="lazy"></a>
<div>
<time datetime="2024-02-09">Feb 09, 2024 </time>
<h2><a href="https://verpex.com/blog/website-tips/css-shapes-the-triangle" target="_blank">CSS Shapes: The Triangle</a></h2>
</div>
</article>
<article data-type="smashingmagazine">
<a href="https://www.smashingmagazine.com/2024/01/css-border-image-property/" target="_blank"><img class="featured" src="img/css-border-image-property.jpg" alt="The Complex But Awesome CSS border-image Property" loading="lazy"></a>
<div>
<time datetime="2024-01-16">Jan 16, 2024 </time>
<h2><a href="https://www.smashingmagazine.com/2024/01/css-border-image-property/" target="_blank">The Complex But Awesome CSS border-image Property</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/css-tricks-to-add-3d-effects-to-your-text" target="_blank"><img class="featured" src="img/3D-effect-text.jpg" alt="CSS Tricks to add 3D Effects to your Text" loading="lazy"></a>
<div>
<time datetime="2023-12-25">Dec 25, 2023 </time>
<h2><a href="https://verpex.com/blog/website-tips/css-tricks-to-add-3d-effects-to-your-text" target="_blank">CSS Tricks to add 3D Effects to your Text</a></h2>
</div>
</article>
<article data-type="smashingmagazine">
<a href="https://www.smashingmagazine.com/2023/11/css-responsive-multi-line-ribbon-shapes-part2/" target="_blank"><img class="featured" src="img/css-responsive-multi-line-ribbon-shapes-part1.jpg" alt="CSS Responsive Multi-Line Ribbon Shapes" loading="lazy"></a>
<div>
<time datetime="2023-11-22">Nov 22, 2023 </time>
<h2><a href="https://www.smashingmagazine.com/2023/11/css-responsive-multi-line-ribbon-shapes-part2/" target="_blank">CSS Responsive Multi-Line Ribbon Shapes (Part 2)</a></h2>
</div>
</article>
<article data-type="smashingmagazine">
<a href="https://www.smashingmagazine.com/2023/11/css-responsive-multi-line-ribbon-shapes-part1/" target="_blank"><img class="featured" src="img/css-responsive-multi-line-ribbon-shapes-part1.jpg" alt="CSS Responsive Multi-Line Ribbon Shapes" loading="lazy"></a>
<div>
<time datetime="2023-11-15">Nov 15, 2023 </time>
<h2><a href="https://www.smashingmagazine.com/2023/11/css-responsive-multi-line-ribbon-shapes-part1/" target="_blank">CSS Responsive Multi-Line Ribbon Shapes (Part 1)</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/i-have-made-100-css-only-ribbon-shapes-the-perfect-collection-4374" target="_blank"><img class="featured" src="img/CSS-ribbon-collection.png" alt="CSS Ribbon collection" loading="lazy"></a>
<div>
<time datetime="2023-11-23">Nov 13, 2023 </time>
<h2><a href="https://dev.to/afif/css-loaderscom-the-biggest-collection-of-loading-animations-more-than-500--23jg" target="_blank">I have made 100+ CSS-only Ribbon Shapes | The Perfect Collection π</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/how-to-create-a-css-only-infinite-scroll-animation" target="_blank"><img class="featured" src="img/scroll-animation.jpg" alt="How to create a CSS-only infinite scroll animation" loading="lazy"></a>
<div>
<time datetime="2023-10-16">Oct 16, 2023 </time>
<h2><a href="https://verpex.com/blog/website-tips/how-to-create-a-css-only-infinite-scroll-animation" target="_blank">How to create a CSS-only infinite scroll animation</a></h2>
</div>
</article>
<article data-type="smashingmagazine">
<a href="https://www.smashingmagazine.com/2023/10/re-creating-pop-out-hover-effect-modern-css-part2/" target="_blank"><img class="featured" src="img/re-creating-pop-out-hover-effect-modern-css-part2.jpg" alt="Re-Creating The Pop-Out Hover Effect With Modern CSS (Part 2)" loading="lazy"></a>
<div>
<time datetime="2023-10-05">Oct 05, 2023 </time>
<h2><a href="https://www.smashingmagazine.com/2023/10/re-creating-pop-out-hover-effect-modern-css-part2/" target="_blank">Re-Creating The Pop-Out Hover Effect With Modern CSS (Part 2)</a></h2>
</div>
</article>
<article data-type="smashingmagazine">
<a href="https://www.smashingmagazine.com/2023/09/re-creating-pop-out-hover-effect-css-part1/" target="_blank"><img class="featured" src="img/re-creating-pop-out-hover-effect-css-part1.jpg" alt="Re-Creating The Pop-Out Hover Effect With Modern CSS (Part 1)" loading="lazy"></a>
<div>
<time datetime="2023-09-29">Sep 29, 2023 </time>
<h2><a href="https://www.smashingmagazine.com/2023/09/re-creating-pop-out-hover-effect-css-part1/" target="_blank">Re-Creating The Pop-Out Hover Effect With Modern CSS (Part 1)</a></h2>
</div>
</article>
<article data-type="sitepoint">
<a href="https://www.sitepoint.com/css-ribbons-single-element/" target="_blank"><img class="featured" src="img/css-ribbons.webp" alt="How to Create CSS Ribbon Shapes with a Single Element" loading="lazy"></a>
<div>
<time datetime="2023-09-28">Sep 28, 2023 </time>
<h2><a href="https://www.sitepoint.com/css-ribbons-single-element/" target="_blank">How to Create CSS Ribbon Shapes with a Single Element</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/css-shapes-the-ribbon" target="_blank"><img class="featured" src="img/ribbon-shape.jpg" alt="CSS Ribbon Shapes" loading="lazy"></a>
<div>
<time datetime="2023-09-18">Sep 18, 2023 </time>
<h2><a href="https://verpex.com/blog/website-tips/css-shapes-the-ribbon" target="_blank">CSS Shapes: The Ribbon</a></h2>
</div>
</article>
<article data-type="smashingmagazine">
<a href="https://www.smashingmagazine.com/2023/09/revealing-images-css-mask-animations/" target="_blank"><img class="featured" src="img/revealing-images-css-mask-animations.jpg" alt="Revealing Images With CSS Mask Animations" loading="lazy"></a>
<div>
<time datetime="2023-09-15">Sep 15, 2023 </time>
<h2><a href="https://www.smashingmagazine.com/2023/09/revealing-images-css-mask-animations/" target="_blank">Revealing Images With CSS Mask Animations</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/css-loaderscom-the-biggest-collection-of-loading-animations-more-than-500--23jg" target="_blank"><img class="featured" src="img/css-loaders.webp" alt="CSS Loaders: 500+ single element loaders" loading="lazy"></a>
<div>
<time datetime="2023-08-30">Aug 30, 2023 </time>
<h2><a href="https://dev.to/afif/css-loaderscom-the-biggest-collection-of-loading-animations-more-than-500--23jg" target="_blank">css-loaders.com: The Biggest Collection of Loading Animations (more than 500 π€―)</a></h2>
</div>
</article>
<article data-type="smashingmagazine">
<a href="https://www.smashingmagazine.com/2023/07/define-array-colors-css/" target="_blank"><img class="featured" src="img/define-array-colors-css.jpg" alt="How To Define An Array Of Colors With CSS" loading="lazy"></a>
<div>
<time datetime="2023-07-28">Jul 28, 2023 </time>
<h2><a href="https://www.smashingmagazine.com/2023/07/define-array-colors-css/" target="_blank">How To Define An Array Of Colors With CSS</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/css-effects-on-images-ii" target="_blank"><img class="featured" src="img/css-image-effect.jpg" alt="CSS effects on images II" loading="lazy"></a>
<div>
<time datetime="2023-07-22">Jul 22, 2023 </time>
<h2><a href="https://verpex.com/blog/website-tips/css-effects-on-images-ii" target="_blank">CSS effects on images II</a></h2>
</div>
</article>
<article data-type="smashingmagazine">
<a href="https://www.smashingmagazine.com/2023/07/shines-perspective-rotations-css-3d-effects-images/" target="_blank"><img class="featured" src="img/shines-perspective-rotations-css-3d-effects-images.jpg" alt="Shines, Perspective, And Rotations: Fancy CSS 3D Effects For Images" loading="lazy"></a>
<div>
<time datetime="2023-07-07">Jul 07, 2023 </time>
<h2><a href="https://www.smashingmagazine.com/2023/07/shines-perspective-rotations-css-3d-effects-images/" target="_blank">Shines, Perspective, And Rotations: Fancy CSS 3D Effects For Images</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/whats-your-lucky-css-pattern-check-it-now-1g18" target="_blank"><img class="featured" src="img/pattern.webp" alt="What's your Lucky CSS Pattern? Check It Now!" loading="lazy"></a>
<div>
<time datetime="2023-06-20">Jun 20, 2023 </time>
<h2><a href="https://dev.to/afif/whats-your-lucky-css-pattern-check-it-now-1g18" target="_blank">What's your Lucky CSS Pattern? Check It Now!</a></h2>
</div>
</article>
<article data-type="sitepoint">
<a href="https://www.sitepoint.com/css-image-reveal-animation/" target="_blank"><img class="featured" src="img/image-reveal.webp" alt="How to Add a CSS Reveal Animation to Your Images" loading="lazy"></a>
<div>
<time datetime="2023-06-15">Jun 15, 2023 </time>
<h2><a href="https://www.sitepoint.com/css-image-reveal-animation/" target="_blank">How to Add a CSS Reveal Animation to Your Images</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/modern-layouts-using-css-grid" target="_blank"><img class="featured" src="img/modern-layouts.jpg" alt="Modern Layouts using CSS Grid" loading="lazy"></a>
<div>
<time datetime="2023-06-10">Jun 10, 2023 </time>
<h2><a href="https://verpex.com/blog/website-tips/modern-layouts-using-css-grid" target="_blank">Modern Layouts using CSS Grid</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/i-created-100-unique-css-patterns-the-best-collection-31cl" target="_blank"><img class="featured" src="img/pattern.webp" alt="CSS Tip: learn CSS the easy way!" loading="lazy"></a>
<div>
<time datetime="2023-05-23">May 23, 2023 </time>
<h2><a href="https://dev.to/afif/i-created-100-unique-css-patterns-the-best-collection-31cl" target="_blank">I created 100+ unique CSS patterns | The best collection π€©</a></h2>
</div>
</article>
<article data-type="sitepoint">
<a href="https://www.sitepoint.com/css-custom-range-slider/" target="_blank"><img class="featured" src="img/range-slider-custom.webp" alt="CSS Shapes: The Heart" loading="lazy"></a>
<div>
<time datetime="2023-05-18">May 18, 2023 </time>
<h2><a href="https://www.sitepoint.com/css-custom-range-slider/" target="_blank">How to Create a Custom Range Slider Using CSS</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/css-shapes-the-heart" target="_blank"><img class="featured" src="img/heart-shape.jpg" alt="CSS Shapes: The Heart" loading="lazy"></a>
<div>
<time datetime="2023-05-13">May 13, 2023 </time>
<h2><a href="https://verpex.com/blog/website-tips/css-shapes-the-heart" target="_blank">CSS Shapes: The Heart</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/css-shapes-polygon-starburst" target="_blank"><img class="featured" src="img/starburst-polygon.jpg" alt="CSS Shapes: Polygon & Starburst" loading="lazy"></a>
<div>
<time datetime="2023-05-06">May 06, 2023 </time>
<h2><a href="https://verpex.com/blog/website-tips/css-shapes-polygon-starburst" target="_blank">CSS Shapes: Polygon & Starburst</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/a-text-reveal-animation-using-css" target="_blank"><img class="featured" src="img/text-reveal-animation.jpg" alt="How to build a CSS-only accordion" loading="lazy"></a>
<div>
<time datetime="2023-04-24">Apr 24, 2023 </time>
<h2><a href="https://verpex.com/blog/website-tips/a-text-reveal-animation-using-css" target="_blank">A Text Reveal Animation using CSS</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/this-is-learning/css-tip-learn-css-the-easy-way-im4" target="_blank"><img class="featured" src="img/css-tip.webp" alt="CSS Tip: learn CSS the easy way!" loading="lazy"></a>
<div>
<time datetime="2023-04-14">Apr 14, 2023 </time>
<h2><a href="https://dev.to/this-is-learning/css-tip-learn-css-the-easy-way-im4" target="_blank">CSS Tip: learn CSS the easy way!</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/how-to-build-a-css-only-accordion" target="_blank"><img class="featured" src="img/CSS-accordion.jpg" alt="How to build a CSS-only accordion" loading="lazy"></a>
<div>
<time datetime="2023-03-25">Mar 25, 2023 </time>
<h2><a href="https://verpex.com/blog/website-tips/how-to-build-a-css-only-accordion" target="_blank">How to build a CSS-only accordion</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/how-to-create-breadcrumb-navigation-with-css" target="_blank"><img class="featured" src="img/Breadcrumb-navigation_3773ef1cca7ea19b34fccd0cd4766edd.jpg" alt="How to create Breadcrumb Navigation with CSS" loading="lazy"></a>
<div>
<time datetime="2023-02-20">Feb 20, 2023 </time>
<h2><a href="https://verpex.com/blog/website-tips/how-to-create-breadcrumb-navigation-with-css" target="_blank">How to create Breadcrumb Navigation with CSS</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/different-ways-to-get-css-gradient-shadows/" target="_blank"><img class="featured" src="img/gradient-shadows.png" alt="Different Ways to Get CSS Gradient Shadows" loading="lazy"></a>
<div>
<time datetime="2023-02-10">Feb 10, 2023</time>
<h2><a href="https://css-tricks.com/different-ways-to-get-css-gradient-shadows/" target="_blank">Different Ways to Get CSS Gradient Shadows</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/a-css-only-responsive-stepper-component" target="_blank"><img class="featured" src="img/Stepper_3773ef1cca7ea19b34fccd0cd4766edd.jpg" alt="A CSS-only responsive Stepper component" loading="lazy"></a>
<div>
<time datetime="2023-02-09">Feb 9, 2023 </time>
<h2><a href="https://verpex.com/blog/website-tips/a-css-only-responsive-stepper-component" target="_blank">A CSS-only responsive Stepper component</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/a-fancy-hover-effect-for-your-avatar/" target="_blank"><img class="featured" src="img/featured-image-avatar.png" alt="A Fancy Hover Effect For Your Avatar" loading="lazy"></a>
<div>
<time datetime="2023-02-03">Feb 3, 2023</time>
<h2><a href="https://css-tricks.com/a-fancy-hover-effect-for-your-avatar/" target="_blank">A Fancy Hover Effect For Your Avatar</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/how-to-make-a-zoom-effect-using-css" target="_blank"><img class="featured" src="img/zoom-effect_3773ef1cca7ea19b34fccd0cd4766edd.jpg" alt="How to make a zoom effect using CSS" loading="lazy"></a>
<div>
<time datetime="2023-02-03">Feb 3, 2023 </time>
<h2><a href="https://verpex.com/blog/website-tips/how-to-make-a-zoom-effect-using-css" target="_blank">How to make a zoom effect using CSS</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/creating-a-custom-cursor-using-css" target="_blank"><img class="featured" src="img/Custom-Cursor_3773ef1cca7ea19b34fccd0cd4766edd.jpg" alt="Creating a Custom Cursor using CSS" loading="lazy"></a>
<div>
<time datetime="2023-01-24">Jan 24, 2023 </time>
<h2><a href="https://verpex.com/blog/website-tips/creating-a-custom-cursor-using-css" target="_blank">Creating a Custom Cursor using CSS</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/css-infinite-3d-sliders/" target="_blank"><img class="featured" src="img/cube-slider.jpg" alt="CSS Infinite 3D Sliders" loading="lazy"></a>
<div>
<time datetime="2022-12-16">Dec 16, 2022 </time>
<h2><a href="https://css-tricks.com/css-infinite-3d-sliders/" target="_blank">CSS Infinite 3D Sliders</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/css-infinite-slider-flipping-through-polaroid-images/" target="_blank"><img class="featured" src="img/polaroid-picture-stack.jpg" alt="CSS Infinite Slider Flipping Through Polaroid Images" loading="lazy"></a>
<div>
<time datetime="2022-12-09">Dec 9, 2022 </time>
<h2><a href="https://css-tricks.com/css-infinite-slider-flipping-through-polaroid-images/" target="_blank">CSS Infinite Slider Flipping Through Polaroid Images</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/how-to-create-a-responsive-sidebar-menu-using-css" target="_blank"><img class="featured" src="img/sidebar-menu_3773ef1cca7ea19b34fccd0cd4766edd.jpg" alt="How to create a responsive sidebar menu using CSS" loading="lazy"></a>
<div>
<time datetime="2022-11-03">Dec 3, 2022 </time>
<h2><a href="https://verpex.com/blog/website-tips/how-to-create-a-responsive-sidebar-menu-using-css" target="_blank">How to create a responsive sidebar menu using CSS</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/css-only-infinite-and-circular-image-slider/" target="_blank"><img class="featured" src="img/circular-slider-carousel.jpg" alt="CSS Infinite and Circular Rotating Image Slider" loading="lazy"></a>
<div>
<time datetime="2022-12-02">Dec 2, 2022 </time>
<h2><a href="https://css-tricks.com/css-only-infinite-and-circular-image-slider/" target="_blank">CSS Infinite and Circular Rotating Image Slider</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/making-static-noise-from-a-weird-css-gradient-bug/" target="_blank"><img class="featured" src="img/tv-static.jpg" alt="Making Static Noise From a Weird CSS Gradient Bug" loading="lazy"></a>
<div>
<time datetime="2022-11-18">Nov 18, 2022 </time>
<h2><a href="https://css-tricks.com/making-static-noise-from-a-weird-css-gradient-bug/" target="_blank">Making Static Noise From a Weird CSS Gradient Bug</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/css-grid-and-custom-shapes-part-3/" target="_blank"><img class="featured" src="img/custom-grid.png" alt="CSS Grid and Custom Shapes, Part 3" loading="lazy"></a>
<div>
<time datetime="2022-11-11">Nov 11, 2022 </time>
<h2><a href="https://css-tricks.com/css-grid-and-custom-shapes-part-3/" target="_blank">CSS Grid and Custom Shapes, Part 3</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/fancy-image-decorations-outlines-and-complex-animations/" target="_blank"><img class="featured" src="img/image-decorations-4.jpg" alt="Fancy Image Decorations: Outlines and Complex Animations" loading="lazy"></a>
<div>
<time datetime="2022-10-28">Oct 28, 2022 </time>
<h2><a href="https://css-tricks.com/fancy-image-decorations-outlines-and-complex-animations/" target="_blank">Fancy Image Decorations: Outlines and Complex Animations</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/fancy-image-decorations-masks-and-advanced-hover-effects/" target="_blank"><img class="featured" src="img/image-decorations-2.jpg" alt="Fancy Image Decorations: Masks and Advanced Hover Effects" loading="lazy"></a>
<div>
<time datetime="2022-10-21">Oct 21, 2022 </time>
<h2><a href="https://css-tricks.com/fancy-image-decorations-masks-and-advanced-hover-effects/" target="_blank">Fancy Image Decorations: Masks and Advanced Hover Effects</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/fancy-image-decorations-single-element-magic/" target="_blank"><img class="featured" src="img/image-decorations.jpg" alt="Fancy Image Decorations: Single Element Magic" loading="lazy"></a>
<div>
<time datetime="2022-10-14">Oct 14, 2022 </time>
<h2><a href="https://css-tricks.com/fancy-image-decorations-single-element-magic/" target="_blank">Fancy Image Decorations: Single Element Magic</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/how-to-create-an-infinite-image-slider-using-css" target="_blank"><img class="featured" src="img/infinite-image-slider_3773ef1cca7ea19b34fccd0cd4766edd.jpg" alt="How to create an infinite image slider using CSS" loading="lazy"></a>
<div>
<time datetime="2022-10-04">Oct 4, 2022 </time>
<h2><a href="https://verpex.com/blog/website-tips/how-to-create-an-infinite-image-slider-using-css" target="_blank">How to create an infinite image slider using CSS</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/how-to-create-wavy-shapes-patterns-in-css/" target="_blank"><img class="featured" src="img/waves-gradient.png" alt="How to Create Wavy Shapes & Patterns in CSS" loading="lazy"></a>
<div>
<time datetime="2022-09-26">Sep 26, 2022 </time>
<h2><a href="https://css-tricks.com/how-to-create-wavy-shapes-patterns-in-css/" target="_blank">How to Create Wavy Shapes & Patterns in CSS</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/how-i-made-a-pure-css-puzzle-game/" target="_blank"><img class="featured" src="img/puzzle-article.png" alt="How I Made a Pure CSS Puzzle Game" loading="lazy"></a>
<div>
<time datetime="2022-09-09">Sep 9, 2022 </time>
<h2><a href="https://css-tricks.com/how-i-made-a-pure-css-puzzle-game/" target="_blank">How I Made a Pure CSS Puzzle Game</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/how-to-create-a-tooltip-speech-bubble-using-css" target="_blank"><img class="featured" src="img/CSS-Tooltip-Speech-bubble_3773ef1cca7ea19b34fccd0cd4766edd.jpg" alt="How to create a Tooltip/Speech Bubble using CSS" loading="lazy"></a>
<div>
<time datetime="2022-08-28">Aug 28, 2022 </time>
<h2><a href="https://verpex.com/blog/website-tips/how-to-create-a-tooltip-speech-bubble-using-css" target="_blank">How to create a Tooltip/Speech Bubble using CSS</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/css-grid-and-custom-shapes-part-2/" target="_blank"><img class="featured" src="img/zig-zag-panel.png" alt="CSS Grid and Custom Shapes, Part 2" loading="lazy"></a>
<div>
<time datetime="2022-08-22">Aug 22, 2022 </time>
<h2><a href="https://css-tricks.com/css-grid-and-custom-shapes-part-2/" target="_blank">CSS Grid and Custom Shapes, Part 2</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/css-grid-and-custom-shapes-part-1/" target="_blank"><img class="featured" src="img/FD3186CB-2199-4F34-8B68-D013284C35FC.jpeg" alt="CSS Grid and Custom Shapes, Part 1" loading="lazy"></a>
<div>
<time datetime="2022-08-15">Aug 15, 2022 </time>
<h2><a href="https://css-tricks.com/css-grid-and-custom-shapes-part-1/" target="_blank">CSS Grid and Custom Shapes, Part 1</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/zooming-images-in-a-grid-layout/" target="_blank"><img class="featured" src="img/grid-zoom-image.png" alt="Zooming Images in a Grid Layout" loading="lazy"></a>
<div>
<time datetime="2022-08-08">Aug 8, 2022 </time>
<h2><a href="https://css-tricks.com/zooming-images-in-a-grid-layout/" target="_blank">Zooming Images in a Grid Layout</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/how-to-create-a-css-only-loader-with-one-element" target="_blank"><img class="featured" src="img/single-element-CSS-loader_3773ef1cca7ea19b34fccd0cd4766edd.jpg" alt="How to create a CSS-only loader with one element" loading="lazy"></a>
<div>
<time datetime="2022-08-07">Aug 7, 2022 </time>
<h2><a href="https://verpex.com/blog/website-tips/how-to-create-a-css-only-loader-with-one-element" target="_blank">How to create a CSS-only loader with one element</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/exploring-css-grids-implicit-grid-and-auto-placement-powers/" target="_blank"><img class="featured" src="img/s_F4C924AEFDB642C9861B01422787157264225531682D164A8C42B48A83B84E89_1656674978920_image.png" alt="Exploring CSS Gridβs Implicit Grid and Auto-Placement Powers" loading="lazy"></a>
<div>
<time datetime="2022-08-01">Aug 1, 2022 </time>
<h2><a href="https://css-tricks.com/exploring-css-grids-implicit-grid-and-auto-placement-powers/" target="_blank">Exploring CSS Gridβs Implicit Grid and Auto-Placement Powers</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/how-to-create-background-pattern-using-css-conic-gradient" target="_blank"><img class="featured" src="img/pattern-with-conic-gradient_3773ef1cca7ea19b34fccd0cd4766edd.jpg" alt="How to create background pattern using CSS & conic-gradient" loading="lazy"></a>
<div>
<time datetime="2022-07-03">Jul 3, 2022 </time>
<h2><a href="https://verpex.com/blog/website-tips/how-to-create-background-pattern-using-css-conic-gradient" target="_blank">How to create background pattern using CSS & conic-gradient</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/single-element-loaders-going-3d/" target="_blank"><img class="featured" src="img/cube-loader.png" alt="Single Element Loaders: Going 3D!" loading="lazy"></a>
<div>
<time datetime="2022-07-01">Jul 1, 2022 </time>
<h2><a href="https://css-tricks.com/single-element-loaders-going-3d/" target="_blank">Single Element Loaders: Going 3D!</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/single-element-loaders-the-bars/" target="_blank"><img class="featured" src="img/loaders-bars.png" alt="Single Element Loaders: The Bars" loading="lazy"></a>
<div>
<time datetime="2022-06-24">Jun 24, 2022 </time>
<h2><a href="https://css-tricks.com/single-element-loaders-the-bars/" target="_blank">Single Element Loaders: The Bars</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/single-element-loaders-the-dots/" target="_blank"><img class="featured" src="img/dots-loader.jpg" alt="Single Element Loaders: The Dots" loading="lazy"></a>
<div>
<time datetime="2022-06-17">Jun 17, 2022 </time>
<h2><a href="https://css-tricks.com/single-element-loaders-the-dots/" target="_blank">Single Element Loaders: The Dots</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/how-to-style-a-progress-bar-using-css" target="_blank"><img class="featured" src="img/progress-element_3773ef1cca7ea19b34fccd0cd4766edd.jpg" alt="How to style a progress bar using CSS" loading="lazy"></a>
<div>
<time datetime="2022-06-12">Jun 12, 2022 </time>
<h2><a href="https://verpex.com/blog/website-tips/how-to-style-a-progress-bar-using-css" target="_blank">How to style a progress bar using CSS</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/single-element-loaders-the-spinner/" target="_blank"><img class="featured" src="img/loaders-spinners.jpg" alt="Single Element Loaders: The Spinner" loading="lazy"></a>
<div>
<time datetime="2022-06-10">Jun 10, 2022 </time>
<h2><a href="https://css-tricks.com/single-element-loaders-the-spinner/" target="_blank">Single Element Loaders: The Spinner</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/css-hover-effects-background-masks-3d/" target="_blank"><img class="featured" src="img/Cool-hover-effects.jpg" alt="Cool CSS Hover Effects That Use Background Clipping, Masks, and 3D" loading="lazy"></a>
<div>
<time datetime="2022-05-26">May 26, 2022 </time>
<h2><a href="https://css-tricks.com/css-hover-effects-background-masks-3d/" target="_blank">Cool CSS Hover Effects That Use Background Clipping, Masks, and 3D</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/cool-hover-effects-that-use-css-text-shadow/" target="_blank"><img class="featured" src="img/text-shadow.png" alt="Cool Hover Effects That Use CSS Text Shadow" loading="lazy"></a>
<div>
<time datetime="2022-05-13">May 13, 2022 </time>
<h2><a href="https://css-tricks.com/cool-hover-effects-that-use-css-text-shadow/" target="_blank">Cool Hover Effects That Use CSS Text Shadow</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/how-to-create-a-responsive-hamburger-menu-using-css" target="_blank"><img class="featured" src="img/header-responsive-menu_3773ef1cca7ea19b34fccd0cd4766edd.jpg" alt="How to create a responsive hamburger menu using CSS" loading="lazy"></a>
<div>
<time datetime="2022-05-12">May 12, 2022 </time>
<h2><a href="https://verpex.com/blog/website-tips/how-to-create-a-responsive-hamburger-menu-using-css" target="_blank">How to create a responsive hamburger menu using CSS</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/cool-hover-effects-using-background-properties/" target="_blank"><img class="featured" src="img/button-hover.png" alt="Cool hover effect using background properties" loading="lazy"></a>
<div>
<time datetime="2022-03-30">Apr 27, 2022 </time>
<h2><a href="https://css-tricks.com/cool-hover-effects-using-background-properties/" target="_blank">Cool Hover Effects That Use Background Properties</a></h2>
</div>
</article>
<article data-type="freecodecamp">
<a href="https://www.freecodecamp.org/news/css-radial-gradient/" target="_blank"><img class="featured" src="img/pattern-header.png" alt="CSS radial-gradient" loading="lazy"></a>
<div>
<time datetime="2022-04-19">Apr 19, 2022 </time>
<h2><a href="https://www.freecodecamp.org/news/css-radial-gradient/" target="_blank">Learn CSS radial-gradient by Building Background Patterns</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/how-to-style-checkbox-and-radio-buttons-using-css" target="_blank"><img class="featured" src="img/radio-checkbox_3773ef1cca7ea19b34fccd0cd4766edd.jpg" alt="CSS Tricks to style checkbox and radio buttons" loading="lazy"></a>
<div>
<time datetime="2022-04-17">Apr 17, 2022 </time>
<h2><a href="https://verpex.com/blog/website-tips/how-to-style-checkbox-and-radio-buttons-using-css" target="_blank">How to style checkbox and radio buttons using CSS</a></h2>
</div>
</article>
<article data-type="verpex">
<a href="https://verpex.com/blog/website-tips/css-tricks-to-make-your-image-look-stunning" target="_blank"><img class="featured" src="img/CSS-Effects_3773ef1cca7ea19b34fccd0cd4766edd.jpg" alt="CSS effects on images" loading="lazy"></a>
<div>
<time datetime="2022-03-30">Mar 30, 2022 </time>
<h2><a href="https://verpex.com/blog/website-tips/css-tricks-to-make-your-image-look-stunning" target="_blank">CSS effects on images</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/cut-corners-using-css-mask-and-clip-path-properties/" target="_blank"><img class="featured" src="img/cutting-corners-1.jpg" alt="CSS Custom corners with mask and clip-path" loading="lazy"></a>
<div>
<time datetime="2022-03-30">Mar 30, 2022 </time>
<h2><a href="https://css-tricks.com/cut-corners-using-css-mask-and-clip-path-properties/" target="_blank">Tricks to Cut Corners Using CSS Mask and Clip-Path Properties</a></h2>
</div>
</article>
<article data-type="freecodecamp">
<a href="https://www.freecodecamp.org/news/section-divider-using-css/" target="_blank"><img class="featured" src="img/section-divider.png" alt="CSS section divider" loading="lazy"></a>
<div>
<time datetime="2022-02-25">Feb 25, 2022 </time>
<h2><a href="https://www.freecodecamp.org/news/section-divider-using-css/" target="_blank">How to Create a Section Divider Using CSS</a></h2>
</div>
</article>
<article data-type="freecodecamp">
<a href="https://www.freecodecamp.org/news/make-a-css-only-ribbon/" target="_blank"><img class="featured" src="img/final-header-ribbon.png" alt="CSS-Only Ribbon" loading="lazy"></a>
<div>
<time datetime="2022-02-08">Feb 8, 2022 </time>
<h2><a href="https://www.freecodecamp.org/news/make-a-css-only-ribbon/" target="_blank">How to Create a CSS-Only Ribbon for Your Website</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/css-borders-using-masks/" target="_blank"><img class="featured" src="img/fancy-borders.png" alt="CSS Borders with masks" loading="lazy"></a>
<div>
<time datetime="2022-01-26">Jan 26, 2022 </time>
<h2><a href="https://css-tricks.com/css-borders-using-masks/" target="_blank">Fancy CSS Borders Using Masks (Zig-Zag, Wavy, and More)</a></h2>
</div>
</article>
<article data-type="freecodecamp">
<a href="https://www.freecodecamp.org/news/how-to-create-a-css-only-loader/" target="_blank"><img class="featured" src="img/header-loader.png" alt="CSS-Only Loaders" loading="lazy"></a>
<div>
<time datetime="2022-01-14">Jan 14, 2022 </time>
<h2><a href="https://www.freecodecamp.org/news/how-to-create-a-css-only-loader/" target="_blank">How to Create a CSS-Only Loader Using One Element</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/i-am-back-with-100-dark-mode-css-loaders-4gp6" target="_blank"><img class="featured" src="img/khkfw2e8kclc35vgpmob.gif" alt="100 CSS Loaders" loading="lazy"></a>
<div>
<time datetime="2022-01-12">Jan 12, 2022 </time>
<h2><a href="https://dev.to/afif/i-am-back-with-100-dark-mode-css-loaders-4gp6" target="_blank">I am back with 100 "Dark Mode" CSS loaders</a></h2>
</div>
</article>
<article data-type="freecodecamp">
<a href="https://www.freecodecamp.org/news/css-only-pie-chart/" target="_blank"><img class="featured" src="img/header-2-3.png" alt="CSS-Only Pie Chart" loading="lazy"></a>
<div>
<time datetime="2022-01-06">Jan 6, 2022 </time>
<h2><a href="https://www.freecodecamp.org/news/css-only-pie-chart/" target="_blank">How to Create a Pie Chart Using Only CSS</a></h2>
</div>
</article>
<article data-type="freecodecamp">
<a href="https://www.freecodecamp.org/news/css-only-back-to-top-button/" target="_blank"><img class="featured" src="img/header-2.png" alt="Back to top button with CSS" loading="lazy"></a>
<div>
<time datetime="2022-01-03">Jan 3, 2022 </time>
<h2><a href="https://www.freecodecamp.org/news/css-only-back-to-top-button/" target="_blank">How to Make an Animated Back to Top Button Using Only CSS</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/responsive-layouts-fewer-media-queries/" target="_blank"><img class="featured" src="img/diet-css.jpg" alt="Responside design without media query" loading="lazy"></a>
<div>
<time datetime="2021-11-22">Nov 22, 2021 </time>
<h2><a href="https://css-tricks.com/responsive-layouts-fewer-media-queries/" target="_blank">Responsive Layouts, Fewer Media Queries</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/exploring-the-css-paint-api-rounding-shapes/" target="_blank"><img class="featured" src="img/header-rounding-shapes.png" alt="Round shapes" loading="lazy"></a>
<div>
<time datetime="2021-10-22">Oct 22, 2021 </time>
<h2><a href="https://css-tricks.com/exploring-the-css-paint-api-rounding-shapes/" target="_blank">Exploring the CSS Paint API: Rounding Shapes</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/exploring-the-css-paint-api-polygon-border/" target="_blank"><img class="featured" src="img/header-polygon-border.png" alt="Polygon borders" loading="lazy"></a>
<div>
<time datetime="2021-09-20">Sep 20, 2021 </time>
<h2><a href="https://css-tricks.com/exploring-the-css-paint-api-polygon-border/" target="_blank">Exploring the CSS Paint API: Polygon Border</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/build-your-css-loader-with-only-one-div-the-dots-3882" target="_blank"><img class="featured" src="img/2vhnxjmn7qgmeecr23xp.gif" alt="CSS loader - The Dots" loading="lazy"></a>
<div>
<time datetime="2021-09-15">Sep 15, 2021 </time>
<h2><a href="https://dev.to/afif/build-your-css-loader-with-only-one-div-the-dots-3882" target="_blank">Build your CSS loader with only one div β The Dots</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/a-multi-line-css-only-typewriter-effect-3op3" target="_blank"><img class="featured" src="img/r9t5cstaou0yjbh1gffj.gif" alt="Multi-line Typewriter" loading="lazy"></a>
<div>
<time datetime="2021-09-03">Sep 3, 2021 </time>
<h2><a href="https://dev.to/afif/a-multi-line-css-only-typewriter-effect-3op3" target="_blank">A Multi-line CSS only Typewriter effect</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/exploring-the-css-paint-api-blob-animation/" target="_blank"><img class="featured" src="img/blob-featured-image.png" alt="Blob Animation" loading="lazy"></a>
<div>
<time datetime="2021-08-30">Aug 30, 2021 </time>
<h2><a href="https://css-tricks.com/exploring-the-css-paint-api-blob-animation/" target="_blank">Exploring the CSS Paint API: Blob Animation</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/a-scalable-css-only-typewriter-effect-2opn" target="_blank"><img class="featured" src="img/wrsbevdmtor63nsyff45.gif" alt="CSS-Only Typewriter" loading="lazy"></a>
<div>
<time datetime="2021-08-28">Aug 28, 2021 </time>
<h2><a href="https://dev.to/afif/a-scalable-css-only-typewriter-effect-2opn" target="_blank">A scalable CSS only Typewriter Effect</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/adding-100-underline-overlay-animations-the-impressive-css-collection-1a93" target="_blank"><img class="featured" src="img/g4nfclcucwaplk78f81q.gif" alt="CSS loaders" loading="lazy"></a>
<div>
<time datetime="2021-08-10">Aug 10, 2021 </time>
<h2><a href="https://dev.to/afif/adding-100-underline-overlay-animations-the-impressive-css-collection-1a93" target="_blank">Adding 100 underline/overlay animations | The impressive CSS collection βοΈ</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/exploring-the-css-paint-api-image-fragmentation-effect" target="_blank"><img class="featured" src="img/frag.png" alt="Fragmentation effect" loading="lazy"></a>
<div>
<time datetime="2021-08-09">Aug 9, 2021 </time>
<h2><a href="https://css-tricks.com/exploring-the-css-paint-api-image-fragmentation-effect" target="_blank">Exploring the CSS Paint API: Image Fragmentation Effect</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/a-css-only-reaction-component-using-emoji-28i4" target="_blank"><img class="featured" src="img/dpm88x3os47ra4j0lgp2.gif" alt="reaction component" loading="lazy"></a>
<div>
<time datetime="2021-07-18">Jul 18, 2021 </time>
<h2><a href="https://dev.to/afif/a-css-only-reaction-component-using-emoji-28i4" target="_blank">A CSS-only reaction component using emoji</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/build-complex-css-transitions-using-custom-properties-and-cubic-bezier/" target="_blank"><img class="featured" src="img/complex-transition.png" alt="Complex CSS transition" loading="lazy"></a>
<div>
<time datetime="2021-07-14">Jul 14, 2021 </time>
<h2><a href="https://css-tricks.com/build-complex-css-transitions-using-custom-properties-and-cubic-bezier/" target="_blank">Build Complex CSS Transitions using Custom Properties and cubic-bezier()</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/scalable-star-rating-without-js-and-no-svg-or-image-for-the-star-2mef" target="_blank"><img class="featured" src="img/lamoa1m50lkoz1nc8l2w.png" alt="CSS Star rating" loading="lazy"></a>
<div>
<time datetime="2021-07-04">Jul 4, 2021 </time>
<h2><a href="https://dev.to/afif/scalable-star-rating-without-js-and-no-svg-or-image-for-the-star-2mef" target="_blank">Scalable "star rating" without JS (and no SVG or image for the star)</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/adding-100-css-loaders-to-the-collection-of-500-css-loaders-2a3p" target="_blank"><img class="featured" src="img/u13po0df336g3p0c7tfc.gif" alt="500 loaders" loading="lazy"></a>
<div>
<time datetime="2021-06-29">Jun 29, 2021 </time>
<h2><a href="https://dev.to/afif/adding-100-css-loaders-to-the-collection-of-500-css-loaders-2a3p" target="_blank">Adding 100 CSS loaders to the collection of β 500 CSS loaders π</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/still-100-css-loaders-for-your-next-project-57hp" target="_blank"><img class="featured" src="img/2jm7h520sa59l8iltewf.gif" alt="CSS loaders" loading="lazy"></a>
<div>
<time datetime="2021-06-15">Jun 15, 2021 </time>
<h2><a href="https://dev.to/afif/still-100-css-loaders-for-your-next-project-57hp" target="_blank">Still 100 CSS loaders for your next project</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/hexagons-and-beyond-flexible-responsive-grid-patterns-sans-media-queries/" target="_blank"><img class="featured" src="img/featured-image.png" alt="CSS Hexagons grid" loading="lazy"></a>
<div>
<time datetime="2021-06-03">Jun 3, 2021 </time>
<h2><a href="https://css-tricks.com/hexagons-and-beyond-flexible-responsive-grid-patterns-sans-media-queries/" target="_blank">Hexagons and Beyond: Flexible, Responsive Grid Patterns, Sans Media Queries</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/i-made-100-more-css-loaders-for-your-next-project-4ioa" target="_blank"><img class="featured" src="img/wy59msifcxnx3xkl5xs2.gif" alt="CSS loaders" loading="lazy"></a>
<div>
<time datetime="2021-06-01">Jun 1, 2021 </time>
<h2><a href="https://dev.to/afif/i-made-100-more-css-loaders-for-your-next-project-4ioa" target="_blank">I made 100 more CSS loaders for your next project</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/another-100-css-loaders-for-your-next-project-352l" target="_blank"><img class="featured" src="img/iqbjwrds4640uwn9b443.gif" alt="CSS loaders" loading="lazy"></a>
<div>
<time datetime="2021-05-25">May 25, 2021 </time>
<h2><a href="https://dev.to/afif/another-100-css-loaders-for-your-next-project-352l" target="_blank">Another 100 CSS loaders for your next project</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/advanced-css-animation-using-cubic-bezier" target="_blank"><img class="featured" src="img/advanced-CSS-animations.png" alt="Advanced CSS animations" loading="lazy"></a>
<div>
<time datetime="2021-05-13">May 13, 2021 </time>
<h2><a href="https://css-tricks.com/advanced-css-animation-using-cubic-bezier" target="_blank">Advanced CSS Animation Using cubic-bezier()</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/i-made-100-css-loaders-for-your-next-project-4eje" target="_blank"><img class="featured" src="img/puyp945v6ifpmbji8ha7.gif" alt="Advanced CSS animations" loading="lazy"></a>
<div>
<time datetime="2021-05-12">May 12, 2021 </time>
<h2><a href="https://dev.to/afif/i-made-100-css-loaders-for-your-next-project-4eje" target="_blank">I made 100 CSS loaders for your next project</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/build-your-responsive-website-without-media-query-omj" target="_blank"><img class="featured" src="img/kn5g7kyx0pery7s4jac3.png" alt="CSS Responsie design" loading="lazy"></a>
<div>
<time datetime="2021-05-05">May 5, 2021 </time>
<h2><a href="https://dev.to/afif/build-your-responsive-website-without-media-query-omj" target="_blank">Build your Responsive website without media query</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/still-100-underline-overlay-animations-the-advanced-css-collection-4mol" target="_blank"><img class="featured" src="img/3bxobl6a6d856vfg3zpo.gif" alt="CSS Responsie design" loading="lazy"></a>
<div>
<time datetime="2021-04-28">Apr 28, 2021 </time>
<h2><a href="https://dev.to/afif/still-100-underline-overlay-animations-the-advanced-css-collection-4mol" target="_blank">Still 100 underline/overlay animations | The advanced CSS collection π</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/float-an-element-to-the-bottom-corner/" target="_blank"><img class="featured" src="img/s8924302uxqd9dqhmqu0.png" alt="Float bottom corner" loading="lazy"></a>
<div>
<time datetime="2021-04-19">Apr 19, 2021 </time>
<h2><a href="https://css-tricks.com/float-an-element-to-the-bottom-corner/" target="_blank">Float an Element to the Bottom Corner</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/100-more-underline-overlay-animations-the-upgraded-css-collection-4c25" target="_blank"><img class="featured" src="img/xn4n5qe9a4rhlczufk7m.gif" alt="CSS underline overlay animation" loading="lazy"></a>
<div>
<time datetime="2021-04-15">Apr 15, 2021 </time>
<h2><a href="https://dev.to/afif/100-more-underline-overlay-animations-the-upgraded-css-collection-4c25" target="_blank">100 more underline/overlay animations | The upgraded CSS collection π₯π₯π₯</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/what-no-one-told-you-about-css-variables-553o" target="_blank"><img class="featured" src="img/cczk1kuorhpqy38w4izq.png" alt="CSS variables" loading="lazy"></a>
<div>
<time datetime="2021-04-08">Apr 8, 2021 </time>
<h2><a href="https://dev.to/afif/what-no-one-told-you-about-css-variables-553o" target="_blank">What no one told you about CSS Variables</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/another-100-underline-overlay-animations-the-extended-css-collection-574c" target="_blank"><img class="featured" src="img/l8349w0dpcdruxe7dxuc.gif" alt="CSS underline overlay animation" loading="lazy"></a>
<div>
<time datetime="2021-03-30">Mar 30, 2021 </time>
<h2><a href="https://dev.to/afif/another-100-underline-overlay-animations-the-extended-css-collection-574c" target="_blank">Another 100 underline/overlay animations | The extended CSS collection π₯π₯</a></h2>
</div>
</article>
<article data-type="css-tricks">
<a href="https://css-tricks.com/image-fragmentation-effect-with-css-masks-and-custom-properties/" target="_blank"><img class="featured" src="img/frag.png" alt="Fragmentation effect" loading="lazy"></a>
<div>
<time datetime="2021-03-23">Mar 23, 2021 </time>
<h2><a href="https://css-tricks.com/image-fragmentation-effect-with-css-masks-and-custom-properties/" target="_blank">Image Fragmentation Effect With CSS Masks and Custom Properties</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/100-underline-overlay-animation-the-ultimate-css-collection-4p40" target="_blank"><img class="featured" src="img/vevb2z73mab3trcg1zs8.gif" alt="CSS underline overlay animation" loading="lazy"></a>
<div>
<time datetime="2021-03-16">Mar 16, 2021 </time>
<h2><a href="https://dev.to/afif/100-underline-overlay-animation-the-ultimate-css-collection-4p40" target="_blank">100 underline/overlay animations | The ultimate CSS collection π₯</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/this-is-learning/all-you-need-to-know-about-background-position-3aac" target="_blank"><img class="featured" src="img/wsmkc98oiimxdiw20afs.png" alt="background position" loading="lazy"></a>
<div>
<time datetime="2021-03-13">Mar 13, 2021 </time>
<h2><a href="https://dev.to/this-is-learning/all-you-need-to-know-about-background-position-3aac" target="_blank">All you need to know about background-position</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/how-to-correctly-position-rotated-text-using-css-1gjc" target="_blank"><img class="featured" src="img/3x9n5237795z2jjx3lfo.png" alt="rotated text" loading="lazy"></a>
<div>
<time datetime="2021-03-11">Mar 11, 2021 </time>
<h2><a href="https://dev.to/afif/how-to-correctly-position-rotated-text-using-css-1gjc" target="_blank">How to correctly position rotated text using CSS</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/responsive-text-based-on-image-size-36n9" target="_blank"><img class="featured" src="img/a2nx9whmmtfwjkjdksrb.png" alt="responsive image text" loading="lazy"></a>
<div>
<time datetime="2021-03-08">Mar 8, 2021 </time>
<h2><a href="https://dev.to/afif/responsive-text-based-on-image-size-36n9" target="_blank">Responsive text based on image size</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/finally-a-css-only-solution-to-create-masonry-layouts-1obh" target="_blank"><img class="featured" src="img/taqr445c1i0vbumftdqn.png" alt="CSS masonry laout" loading="lazy"></a>
<div>
<time datetime="2021-03-04">Mar 4, 2021 </time>
<h2><a href="https://dev.to/afif/finally-a-css-only-solution-to-create-masonry-layouts-1obh" target="_blank">Finally a CSS-only solution to create masonry layouts</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/never-make-your-text-container-a-flexbox-container-m9p" target="_blank"><img class="featured" src="img/1dgayachyp1z3m4yi50t.png" alt="flexbox text container" loading="lazy"></a>
<div>
<time datetime="2021-03-03">Mar 3, 2021 </time>
<h2><a href="https://dev.to/afif/never-make-your-text-container-a-flexbox-container-m9p" target="_blank">Never make your text container a flexbox container</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/we-can-finally-animate-css-gradient-kdk" target="_blank"><img class="featured" src="img/vda3askm2sbfjl717q9q.png" alt="gradient animation" loading="lazy"></a>
<div>
<time datetime="2021-02-26">Feb 26, 2021 </time>
<h2><a href="https://dev.to/afif/we-can-finally-animate-css-gradient-kdk" target="_blank">We can finally animate CSS gradient</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/this-is-learning/fully-responsive-css-folded-ribbon-11h5" target="_blank"><img class="featured" src="img/drxvpanfwdbew30fcxcy.png" alt="Folded responsive ribbon" loading="lazy"></a>
<div>
<time datetime="2021-02-25">Feb 25, 2021 </time>
<h2><a href="https://dev.to/this-is-learning/fully-responsive-css-folded-ribbon-11h5" target="_blank">Fully responsive CSS folded ribbon</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/css-shapes-with-rounded-corners-56h" target="_blank"><img class="featured" src="img/letmrzhelpi7uq0sd0d0.png" alt="CSS rounded shapes" loading="lazy"></a>
<div>
<time datetime="2021-02-21">Feb 21, 2021 </time>
<h2><a href="https://dev.to/afif/css-shapes-with-rounded-corners-56h" target="_blank">CSS Shapes with rounded corners</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/wrapping-text-inside-a-circular-shape-4k5h" target="_blank"><img class="featured" src="img/8ed7zv2advyuob23rqii.png" alt="Text inside circle" loading="lazy"></a>
<div>
<time datetime="2021-02-17">Feb 17, 2021 </time>
<h2><a href="https://dev.to/afif/wrapping-text-inside-a-circular-shape-4k5h" target="_blank">Wrapping text inside a circular shape</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/responsive-hexagon-grid-without-media-query-57g7" target="_blank"><img class="featured" src="img/hote9zyrdk6gkdw6f8hw.png" alt="CSS hexagon grid" loading="lazy"></a>
<div>
<time datetime="2021-02-15">Feb 15, 2021 </time>
<h2><a href="https://dev.to/afif/responsive-hexagon-grid-without-media-query-57g7" target="_blank">Responsive hexagon grid without media query</a></h2>
</div>
</article>
<article data-type="dev">
<a href="https://dev.to/afif/border-with-gradient-and-radius-387f" target="_blank"><img class="featured" src="img/k23fyeb50ymxf7gkbe7s.png" alt="Border gradient with radius" loading="lazy"></a>
<div>
<time datetime="2021-02-12">Feb 12, 2021 </time>
<h2><a href="https://dev.to/afif/border-with-gradient-and-radius-387f" target="_blank">Border with gradient and radius</a></h2>
</div>
</article>
</main>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-VV138PSE0P"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-VV138PSE0P');
</script>
</body>
</html>