-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathatom.xml
More file actions
4816 lines (4816 loc) · 256 KB
/
Copy pathatom.xml
File metadata and controls
4816 lines (4816 loc) · 256 KB
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
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
<title>comiCSS</title>
<subtitle>A webcomic about CSS. Coded in CSS.</subtitle>
<link href="https://comicss.art/atom.xml" rel="self" />
<link href="https://comicss.art/" />
<id>https://comicss.art/</id>
<updated>2022-02-18T00:00:00Z</updated>
<entry>
<title>Flexing</title>
<link href="https://comicss.art/comics/1" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/1/flexing.html"/>
<id>https://comicss.art/comics/1</id>
<updated>2021-01-09T00:00:00Z</updated>
<summary>New cartoon: flexing.</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/1/flexing.png" alt="A cartoon with two panels. In the first one, there's a black-and-white character small in the box, and says 'sometimes I feel quite small'. In the second panel, the character looks big in the box, and says 'then I flex a little'" /></p>
</div>
</content>
<rights>Copyright 2021 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Word Breaking</title>
<link href="https://comicss.art/comics/2" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/2/word-breaking.html"/>
<id>https://comicss.art/comics/2</id>
<updated>2021-01-07T00:00:00Z</updated>
<summary>New cartoon: word breaking.</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/2/word-breaking.png" alt="A cartoon with one panel. A serious-looking black-and-white character over the repeating message 'The world is a really peculiar place. There are times when you feel like break-dancing, and some other times, when you just feel like word-breaking...'" /></p>
</div>
</content>
<rights>Copyright 2021 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Lioncorn</title>
<link href="https://comicss.art/comics/3" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/3/lioncorn.html"/>
<id>https://comicss.art/comics/3</id>
<updated>2022-01-03T00:00:00Z</updated>
<summary>New cartoon: Lioncorn.</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/3/lioncorn.png" alt="Cartoon showing a lion with a unicorn hat saying 'I am a unicorn! Roar!... and so forth'. And an ashamed unicorn smiling next to it." /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Unilion</title>
<link href="https://comicss.art/comics/4" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/4/unilion.html"/>
<id>https://comicss.art/comics/4</id>
<updated>2022-01-03T00:30:00Z</updated>
<summary>New cartoon: Unilion.</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/4/unilion.png" alt="Cartoon showing a unicorn with a lion mane wig hat saying 'I am a lion! Roar!... and so forth'. And an ashamed lion smiling next to it." /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>At the barbershop</title>
<link href="https://comicss.art/comics/5" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/5/barbershop.html"/>
<id>https://comicss.art/comics/5</id>
<updated>2022-01-30T00:00:00Z</updated>
<summary>New cartoon: barbershop.</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/5/barbershop.png" alt="A comic strip with two panels showing a barber with a razor and a client. In the first one, the barber asks 'do you prefer the neckline square or rounded?'. In the second one, the client replies 'border-radius: 100% / 20%' to the surprise of the barber." /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Texas Freeze I</title>
<link href="https://comicss.art/comics/6" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/6/texas-freeze-i.html"/>
<id>https://comicss.art/comics/6</id>
<updated>2022-02-04T00:00:00Z</updated>
<summary>New cartoon: Texas Freeze I.</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/6/texas-freeze-i.png" alt="Comic strip with two panels. The first one reads: 'A cold front approaches Texas... again...'' and it has a white man reading a text message on his phone: *message from parents* It is freezing in Texas. What are you doing to stay warm?. In the second panel, the man replies: Don't worry. I'm fine. I'm holding a laptop and opened one of my CSS animations." /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Texas Freeze II</title>
<link href="https://comicss.art/comics/7" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/7/texas-freeze-ii.html"/>
<id>https://comicss.art/comics/7</id>
<updated>2022-02-04T10:00:00Z</updated>
<summary>New cartoon: Texas Freeze II.</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/7/texas-freeze-ii.png" alt="Comic strip with two panels. The first one reads: 'A cold front approaches Texas... again...' and it has a white man reading a text message on his phone: *message from parents* Temperatures will drop to the single digits. In the second panel, the man replies: Got it! Then I'll open the 3D animations." /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Texas Freeze III</title>
<link href="https://comicss.art/comics/8" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/8/texas-freeze-iii.html"/>
<id>https://comicss.art/comics/8</id>
<updated>2022-02-04T02:00:00Z</updated>
<summary>New cartoon: Texas Freeze III.</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/8/texas-freeze-iii.png" alt="Comic strip with two panels. The first one reads: 'A cold front approaches Texas... again...' and it has a white man reading a text message on his phone: *message from parents* This is serious!! It could get really cold!!!. In the second panel, the man replies: Ok, ok. I'll use Chrome to open the animations." /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>You cannot write...</title>
<link href="https://comicss.art/comics/9" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/9/accessory.html"/>
<id>https://comicss.art/comics/9</id>
<updated>2022-02-11T00:00:00Z</updated>
<summary>New cartoon: You cannot write...</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/9/accessory.png" alt="Comic strip with two panels. The first one shows a white man saying: 'You cannot write accessibility without CSS'. The second panel is a view of the same white man from behind, he is holding a blood-soaked knife and says: nor accessory to murder... but let's put a display:none on that one for now." /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Their love was impossible</title>
<link href="https://comicss.art/comics/10" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/10/impossible-love.html"/>
<id>https://comicss.art/comics/10</id>
<updated>2022-02-14T00:00:00Z</updated>
<summary>New cartoon: Their love was impossible</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/10/impossible-love.png" alt="Comic strip with a single panel showing a fly and a spider smiling at each other with a heart in between them." /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Superheroes.css</title>
<link href="https://comicss.art/comics/11" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/11/superherocss.html"/>
<id>https://comicss.art/comics/11</id>
<updated>2022-02-18T00:00:00Z</updated>
<summary>New cartoon: Superheroes.css</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/11/superherocss.png" alt="Comic strip showing CSS code that describes different superheroes based on CSS properties" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Surprised Pikachu</title>
<link href="https://comicss.art/comics/12" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/12/pikachu.html"/>
<id>https://comicss.art/comics/12</id>
<updated>2022-02-21T00:00:00Z</updated>
<summary>New cartoon: Surprised Pikachu</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/12/pikachu.png" alt="Comic strip showing a surprised Pikachu meme, with a surprise little Pokemon next to the text: 'Me: *builds CSS animatrion*. *Computer fan goes crazy* Me:' and the drawing" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Scroll Snap</title>
<link href="https://comicss.art/comics/13" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/13/scroll-snap.html"/>
<id>https://comicss.art/comics/13</id>
<updated>2022-02-25T00:00:00Z</updated>
<summary>New cartoon: Scroll Snap</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/13/scroll-snap.png" alt="Comic strip with 6 stacked panels. The first, third, and fifth one show a man scrolling a mouse in front of the computer. The second and fourth show the man snapping his fingers. The sixth shows the man worried as someones says 'that's not how you do scroll snap!'" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Accent Colors</title>
<link href="https://comicss.art/comics/14" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/14/accent-color.html"/>
<id>https://comicss.art/comics/14</id>
<updated>2022-02-28T00:00:00Z</updated>
<summary>New cartoon: Accent Colors</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/14/accent-color.png" alt="Comic strip with 5 panels showing a white man getting angrier and angrier while updating the color value on CSS to green in Spanish, German, French, and Ukranian. In the final panel he asks 'Hey, honey! How did you say accent-color worked in CSS?'" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>My CSS is to Democracy</title>
<link href="https://comicss.art/comics/15" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/15/democracy.html"/>
<id>https://comicss.art/comics/15</id>
<updated>2022-03-07T00:00:00Z</updated>
<summary>New cartoon: My CSS is to Democracy</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/15/democracy.png" alt="Cartoon of a man looking at a laptop and saying 'My CSS is to Web Development what Communism is to Democracy!' (based on a classic Mafalda cartoon)" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Fast, Faster, Fastest</title>
<link href="https://comicss.art/comics/16" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/16/fastest.html"/>
<id>https://comicss.art/comics/16</id>
<updated>2022-03-14T00:00:00Z</updated>
<summary>New cartoon: Fast, Faster, Fastest</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/16/fastest.png" alt="Cartoon with 3 panels. The first one shows the IE11 logo crossing a finish line. The second panel shows the IE logo taunting 'SUCK IT, LOSERS!! I WON!!! IE IS THE FASTEST!! IE IS THE BEST!!!!' at other browsers logos that discuss about who will talk to IE. In the third and last panel, the Chrome logo is whispering to IE logo's ear. The IE logo looks shocked and says: 'What do you mean Rio was over six years ago?.... Tokyo? That's like 11,000 miles away!'" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>2022 CSS Presidential Debate</title>
<link href="https://comicss.art/comics/17" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/17/debate.html"/>
<id>https://comicss.art/comics/17</id>
<updated>2022-03-21T00:00:00Z</updated>
<summary>New cartoon: 2022 CSS Presidential Debate</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/17/debate.png" alt="Comic strip with 4 panels. The first one has the title '2022 CSS Presidential Debate', there are two comentators and one says 'next question is for both candidates: what is the main issue impacting CSS today?' In the second panel, one candidate replies 'Definitely, the lack of support of key features by some browsers', the other candidate goes in a non-sensical attack to the first candidate using a lot of CSS terms. In the third panel, the second candidate floods the conversation with his nonsensical speech while the first candidate looks confused and says 'wait... what? are you just chaining random CSS keywords?'. In the last panel, the moderators are back and one says smiling: 'Wow! I dont want to influence people, but I think we have a clear winner.'" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Ghost Costume</title>
<link href="https://comicss.art/comics/18" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/18/ghost-costume.html"/>
<id>https://comicss.art/comics/18</id>
<updated>2022-03-28T00:00:00Z</updated>
<summary>New cartoon: Ghost Costume</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/18/ghost-costume.png" alt="Comic strip with 4 panels. The first one shows the IE logo dressed up with a white blanket on top and saying 'Hey!' to a confused Chrome logo that says 'Errr.... hello?' and murmurs 'is it summer already?'. The second panel shows the IE logo saying 'sup?' to a scary-looking Safari logo yelling AIEEEE! In the third panel, the IE logo says 'morning' to the Opera logo that looks intrigued saying 'What the...'. In the final panel, the IE logo smiles happily saying 'Wow! my new ghost costume is going to kill it this Halloween', while a conversation happens off-panel: 'Halloween?', 'Mhmm', 'But June 15', 'I know', 'We need to tell IE', 'Why? Look how happy it is', 'But...', 'No!'" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Eeny, Meeny, Miny, Moe</title>
<link href="https://comicss.art/comics/19" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/19/eeeny-meeny-miny-moe.html"/>
<id>https://comicss.art/comics/19</id>
<updated>2022-04-04T00:00:00Z</updated>
<summary>New cartoon: Eeny, Meeny, Miny, Moe</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/19/eeny-meeny-miny-moe.png" alt="Cartoon with the lyrics of the song 'Eeny, meeny, miny, moe. Catch a tiger by the toe. If he hollers, let him go. Eeny, meeny, miny, moe!' printed over different browser logos (with scared faces): Chrome, Samsung Internet, Opera, Yandex, Maxthon, Tor, Vivaldi, and Safari (where there the song ends). In the last panel, a bubble has the text 'It is decided! Safari, from now on, youll be known as The New IE' And a crying Safari logo replies 'But... but... I am a fine browser. I am not as bad as before, I support many things... please... I support Lab and LCH... container queries... cascade layers... I swear, 15.4 is amazing... Dont do this to me...' And in a corner of the panel the IE logo says from a distance 'Hey, friends, Not trying to rain on your parade, but... I am still alive, you know?' and a voice in off says 'shut up, IE!'" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>A very private browser</title>
<link href="https://comicss.art/comics/20" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/20/private.html"/>
<id>https://comicss.art/comics/20</id>
<updated>2022-04-08T00:00:00Z</updated>
<summary>New cartoon: A Very Private Browser</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/20/private.png" alt="Cartoon with two panels. The first one shows the Chrome and Safari browser logos talking. Chrome says: 'So... what do we know about the new guy?' and Safari replies 'Not much...'. In the second panel, the Tor logo is covered with sun glasses, a coat and a hat. The Safari logo continues talking: 'but you can tell they are really private'" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Animation Train</title>
<link href="https://comicss.art/comics/21" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/21/animation-train.html"/>
<id>https://comicss.art/comics/21</id>
<updated>2022-04-11T00:00:00Z</updated>
<summary>New cartoon: Animation Train</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/21/animation-train.png" alt="Cartoon with 5 panels divided in two parts, one showing CSS code and the other a landscape with a train. The first panel code is an animation from left 0 to 100% applied to an element of class .train with a duration of 8s. The second panel is for a #Japan .train, the duration is 0.7 the regular duration. The third panel is for a #USA .train, the duration is 1.5 the regular duration. The fourth panel is for a #Iceland .train, it has a display none and no train is displayed. The last panel is for #UK .train, it has am animation delay of 2s and the animation-play-state is 'paused'." /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Grandpa Browser</title>
<link href="https://comicss.art/comics/22" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/22/grandpa.html"/>
<id>https://comicss.art/comics/22</id>
<updated>2022-04-14T00:00:00Z</updated>
<summary>New cartoon: Grandpa Browser</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/22/grandpa.png" alt="Cartoon showing the Netscape Navigator logo using a walker and saying 'And for a while, I was the most popular browser on the Internet. Even more than IE! And everyone loved my cool icon animation with shooting stars...'. The Chrome logo is helping and rolling its eyes says 'Sure, grandpa. Now let's get you to bed...'" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Types of CSS Artists</title>
<link href="https://comicss.art/comics/23" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/23/css-artists.html"/>
<id>https://comicss.art/comics/23</id>
<updated>2022-04-18T00:00:00Z</updated>
<summary>New cartoon: Types of CSS Artists</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/23/css-artists.png" alt="Recognize the CSS artist by their style!" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>The Slap</title>
<link href="https://comicss.art/comics/24" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/24/the-slap.html"/>
<id>https://comicss.art/comics/24</id>
<updated>2022-04-19T00:00:00Z</updated>
<summary>New cartoon: The Slap</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/24/the-slap.png" alt="Cartoon with 4 panels similar to a previous cartoon by Stephan Pastis. In the first panel two men are talking: 'hey, Al! What are you doing?' and 'Drawing a silly joke about this devs wife who has some weird styles on a main element'. The second panel has Will Smith slapping the man that said the last part (who drops to the floor). In the third panel (outside of frame), Will Smith yells 'Keep my wifes main out of your [expletive] mouth!'. In the last panel, the first man says to the one on the floor: 'There is a lesson in all this, but I fear it may not be the one you think'." /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Soy Milk (I)</title>
<link href="https://comicss.art/comics/25" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/25/soy-milk-i.html"/>
<id>https://comicss.art/comics/25</id>
<updated>2022-04-21T00:00:00Z</updated>
<summary>New cartoon: Soy Milk (I)</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/25/soy-milk-i.png" alt="Cartoon showing a cute milk carton and a stick of butter. The milk says 'Hi, Soy Milk' and the butter replies 'Hola, soy Mantequilla'" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Soy Milk (II)</title>
<link href="https://comicss.art/comics/26" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/26/soy-milk-i.html"/>
<id>https://comicss.art/comics/26</id>
<updated>2022-04-21T00:00:01Z</updated>
<summary>New cartoon: Soy Milk (II)</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/26/soy-milk-ii.png" alt="Cartoon showing a cute soy milk carton and a stick of butter. The butter says 'Hi, Soy Milk' and the butter replies 'No, tu eres Mantequilla'" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Soy Milk (3D)</title>
<link href="https://comicss.art/comics/27" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/27/soy-milk-3d.html"/>
<id>https://comicss.art/comics/27</id>
<updated>2022-04-21T00:00:02Z</updated>
<summary>New cartoon: Soy Milk (3D)</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/27/soy-milk-3d.png" alt="Cartoon showing a cute soy milk carton and a stick of butter. The butter says 'Hi, Soy Milk' and the butter replies 'No, tu eres Mantequilla'" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Cross-Stitch</title>
<link href="https://comicss.art/comics/28" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/28/cross-stitch.html"/>
<id>https://comicss.art/comics/28</id>
<updated>2022-04-25T00:00:00Z</updated>
<summary>New cartoon: Cross-Stitch</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/28/cross-stitch.png" alt="Cartoon with two panels. The first one shows a nice cross-stitch pattern that reads CSStitch ART, with the legend 'how the web page looks like'. The second panel is the back of the cross-stitch, really messy, and a legend says 'how the CSS code actually looks like'" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Four CSS Combinators walk into a bar...</title>
<link href="https://comicss.art/comics/29" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/29/combinators.html"/>
<id>https://comicss.art/comics/29</id>
<updated>2022-05-06T00:00:00Z</updated>
<summary>New cartoon: Four CSS Combinators walk into a bar...</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/29/combinators.png" alt="Cartoon with 5 stacked panels. All panels show a bar with 4 stools with people, a CSS combinator saying 'hey waiter! our next round on me!', and another 4 stools with people. In the first panel, the child combinator (>) invites to the rounds and someone off-panel says 'thanks, dad!'. In the second panel, the adjacent sibling combinator (+) invites to the next round, and the person to its right says 'thanks, bro'. In the third panel, the general sibling combinator (~) invites to the next round, and all the people to its right yell 'woohoo!, Thank you, dude!'. In the fourth panel, the universal selector (*) invites to the next round and all the people in the panel (to its right and left) start celebrating. In the final panel, the column combinator (||) invites to the next round, and the other combinators (off-panel) say 'Thank you!'" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Electronic Party</title>
<link href="https://comicss.art/comics/30" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/30/electronic-party.html"/>
<id>https://comicss.art/comics/30</id>
<updated>2022-05-09T00:00:00Z</updated>
<summary>New cartoon: Electronic Party</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/30/electronic-party.png" alt="Cartoon with two panels. In the first one, the logos of Discord, Slack, and WebTorrent are dancing. In the second panel, the logo of Safari looks angry and asks to the logo of Chrome: 'Who invited those bozos to the party?' Chrome replies with a worried face: 'Sorry, it was me. They are my... hmmm... friends?' then continues 'cousins?', 'siblings?', 'children????'" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Superheroes.CSS (v2)</title>
<link href="https://comicss.art/comics/31" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/31/superherocss-v2.html"/>
<id>https://comicss.art/comics/31</id>
<updated>2022-05-12T00:00:00Z</updated>
<summary>New cartoon: Superheroes.CSS (v2)</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/31/superherocss-v2.png" alt="Cartoon with CSS code used to describe different superheroes" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>justify-content</title>
<link href="https://comicss.art/comics/32" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/32/justify-content.html"/>
<id>https://comicss.art/comics/32</id>
<updated>2022-05-13T00:00:00Z</updated>
<summary>New cartoon: justify-content</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/32/justify-content.png" alt="Cartoon with six panels showing different values of justify-content by placing the eyes of a cartoon character in different positions" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>CSSoomba</title>
<link href="https://comicss.art/comics/33" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/33/cssoomba.html"/>
<id>https://comicss.art/comics/33</id>
<updated>2022-05-16T00:00:00Z</updated>
<summary>New cartoon: CSSoomba</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/33/cssoomba.png" alt="Cartoon with three panels. In the first one there's some verbose CSS code. In the second one a Roomba-styled vaccum cleaner passes on top of the CSS code. In the third panel, there's some CSS code that does the same thing as the code from panel one, but it is shorter and cleaner." /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Integrate!</title>
<link href="https://comicss.art/comics/34" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/34/integrate.html"/>
<id>https://comicss.art/comics/34</id>
<updated>2022-05-19T00:00:00Z</updated>
<summary>New cartoon: Integrate</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/34/integrate.png" alt="Cartoon showing mathematical expressions 'a' and 'x to the square' saying 'Cmon mate! Join the party! Integrate!' to another mathematical expression 'e to the power of x' that replies 'What's the point? it will be the same'" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Decaf</title>
<link href="https://comicss.art/comics/35" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/35/decaf.html"/>
<id>https://comicss.art/comics/35</id>
<updated>2022-05-23T00:00:00Z</updated>
<summary>New cartoon: Decaf</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/35/decaf.png" alt="Cartoon with 2 panels. The first one shows two people talking. One says: the 'CSS is not a programming language are really quiet lately'. The other one replies: 'I know!', and in the second panel he adds 'I switched the coffee with decaf'. In the background there's a room full of people sleeping." /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Flex Pikachu</title>
<link href="https://comicss.art/comics/36" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/36/flex-pikachu.html"/>
<id>https://comicss.art/comics/36</id>
<updated>2022-05-26T00:00:00Z</updated>
<summary>New cartoon: Flex Pikachu</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/36/flex-pikachu.png" alt="Cartoon with three panels, all of them showing the Surprised Pikachu meme. The first one is 'regular'. The second one has all the face elements in a row and has the title 'after adding flex'. The third panel has all the face elements in a column and has the title 'after adding flex-direction:column'" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Blend in</title>
<link href="https://comicss.art/comics/37" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/37/blend-in.html"/>
<id>https://comicss.art/comics/37</id>
<updated>2022-05-31T00:00:00Z</updated>
<summary>New cartoon: Blend in</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/37/blend-in.png" alt="Cartoon with 6 panels showing a minimalistic character that says 'Sometimes I feel awkward and out of place... then I try to blend in... until... no on... can barely... see me.'. Different mix-blend-modes have been applied to the character so in each panel it looks more transparent or with grayer/paler colors." /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Roses are #f00</title>
<link href="https://comicss.art/comics/38" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/38/roses-are-f00.html"/>
<id>https://comicss.art/comics/38</id>
<updated>2022-06-02T00:00:00Z</updated>
<summary>New cartoon: Roses are #f00</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/38/roses-are-f00.png" alt="Roses are #FF0000. Violets are #EE82EE. If you see them #0000FF, you may need glasses." /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Not important</title>
<link href="https://comicss.art/comics/39" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/39/not-important.html"/>
<id>https://comicss.art/comics/39</id>
<updated>2022-06-06T00:00:00Z</updated>
<summary>New cartoon: Not important</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/39/not-important.png" alt="Cartoon with three panels. The first two show a white man in front of a computer with the text: 'A back-end software developer merrily working on a front-end project with HTML and CSS, getting confused af because the color of the text is not correct. Even when he clearly specified that the text color should be blue, because the orange value is not important' Followed by some CSS code where a paragraph has the style color: orange !important;" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Magic Trick</title>
<link href="https://comicss.art/comics/40" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/40/magic-trick.html"/>
<id>https://comicss.art/comics/40</id>
<updated>2022-06-09T00:00:00Z</updated>
<summary>New cartoon: Magic Trick</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/40/magic-trick.png" alt="Cartoon of a magician saying 'go to the code to see the magic trick in action" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>The Death of IE</title>
<link href="https://comicss.art/comics/41" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/41/the-death-of-ie.html"/>
<id>https://comicss.art/comics/41</id>
<updated>2022-06-15T00:00:00Z</updated>
<summary>New cartoon: The Death of IE</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/41/the-death-of-ie.png" alt="Cartoon page divided in 3 sections with multiple panels each. In the first section, IE is dead and the rest of the browsers get together to honor it. In the second section, two suited men (Big and Corp) visit the necromancer asking to bring IE back to life because it's their favorite way of torturing employees. In the last section, IE is back as a ghost, the other browsers run scared to IE despair, and the ghost of the Flash logo tries to cheer IE up... to be continued?" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Moses Flexing the Read Sea</title>
<link href="https://comicss.art/comics/42" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/42/moses-flexing-the-read-sea.html"/>
<id>https://comicss.art/comics/42</id>
<updated>2022-06-20T00:00:00Z</updated>
<summary>New cartoon: Moses Flexing the Read Sea</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/42/moses-flexing-the-read-sea.png" alt="Cartoon of a man (Moses) wearing a tunic and holding a stick between a body of water parted in two. He is saying '#red.sea { display: flex; justify-content: space-between; }'" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Pandora's Box Model</title>
<link href="https://comicss.art/comics/43" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/43/pandoras-box-model.html"/>
<id>https://comicss.art/comics/43</id>
<updated>2022-06-27T00:00:00Z</updated>
<summary>New cartoon: Pandora's Box Model</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/43/pandoras-box-model.png" alt="Comic with 4 panels. All of them showing a Greek woman with a tunic opening a box. The first one is titled Pandora's box and out of the box comes words like 'death', 'illness', 'pestilence'. The second panel is titled Pandora's box model and the words are 'margin', 'border', 'padding', and 'content'. The third panel is titled Pandora's box-shadow, the words coming out of the box are 'offset', 'blur', 'spread', and 'color', the panel has three shadows. The last panel is titled Pandora's CodeSandBox, out of the box there's the codesandbox logo (a three-dimensional cube)." /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Flexcuses</title>
<link href="https://comicss.art/comics/44" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/44/flexcuse.html"/>
<id>https://comicss.art/comics/44</id>
<updated>2022-07-11T00:00:00Z</updated>
<summary>New cartoon: Flexcuse</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/44/flexcuse.png" alt="Comic strip with two panels showing two characters talking. In the first panel, a character is in front of a poster showing two buildings and a car in between, ane explains in a complex way using CSS Flexbox that the car cannot reach one of the buildings because the building has a margin. In the second panel, the other person replies with something in the line of 'why not just say you were late due to traffic?'" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Nightmare</title>
<link href="https://comicss.art/comics/45" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/45/nightmare.html"/>
<id>https://comicss.art/comics/45</id>
<updated>2022-07-18T00:00:00Z</updated>
<summary>New cartoon: Nightmare</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/45/nightmare.png" alt="Comic strip showing two characters talking. One says 'great news! we got a new project supporting IE11!'. the other character replies 'that is gr... wait... what?!' and its face goes more and more concerned." /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Black Coffee</title>
<link href="https://comicss.art/comics/46" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/46/black-coffee.html"/>
<id>https://comicss.art/comics/46</id>
<updated>2022-07-25T00:00:00Z</updated>
<summary>New cartoon: Black Coffee</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/46/black-coffee.png" alt="cartoon showing a man asking a barista 'I'll take a #000 coffee'" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>CSS Angry NPC Wojak</title>
<link href="https://comicss.art/comics/47" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/47/css-angry-wojak.html"/>
<id>https://comicss.art/comics/47</id>
<updated>2022-08-01T00:00:00Z</updated>
<summary>New cartoon: CSS Angry NPC Wojak</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/47/css-angry-wojak.png" alt="Poor version of the Angry Wojak meme showing 4 panels with two people talking. The first panel shows a person saying 'You cannot create memes in CSS'. The second panel has the other person replying 'Of course you can!' The third and fourth panels show the first person, first normal (without saying anything) and then with an angry look." /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>CSS OOP</title>
<link href="https://comicss.art/comics/48" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/48/oop.html"/>
<id>https://comicss.art/comics/48</id>
<updated>2022-08-08T00:00:00Z</updated>
<summary>New cartoon: CSS OOP</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/48/oop.png" alt="Modified version of the Angry Wojak meme showing 4 panels with two people talking. The first panel shows a person saying 'CSS is not a programming language'. The second panel has the other person replying 'Of course it is! What are the main concepts of OOP?' Then proceeds to 'explain' how CSS 'has' encapsulation, inheritance, abstraction, and polymorphism, so it should be considered an object-oriented programming language.The last two panels show the first person, first normal (without saying anything) and then with an angry look." /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>JS Hulk</title>
<link href="https://comicss.art/comics/49" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/49/js-hulk.html"/>
<id>https://comicss.art/comics/49</id>
<updated>2022-08-15T00:00:00Z</updated>
<summary>New cartoon: JS Hulk</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/49/js-hulk.png" alt="A man turns into the hulk (a big green version of himself) after getting angry because someone suggested he used CSS for doing animations instead of JavaScript." /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Wedding Invitation</title>
<link href="https://comicss.art/comics/50" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/50/wedding-invitation.html"/>
<id>https://comicss.art/comics/50</id>
<updated>2022-08-22T00:00:00Z</updated>
<summary>New cartoon: Wedding Invitation</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/50/wedding-invitation.png" alt="Cartoon with multiple panels showing Robin and Batman fighting over Batman being a penny pincher and writing #000 Canary instead of Black Canary in some wedding invitations in order to save money." /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Floatin' Dirty</title>
<link href="https://comicss.art/comics/51" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/51/floatin-dirty.html"/>
<id>https://comicss.art/comics/51</id>
<updated>2022-08-29T00:00:00Z</updated>
<summary>New cartoon: Floatin' Dirty</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/51/floatin-dirty.png" alt="Cartoon with a fish swimming in a fishbowl with the text: They see me floatin' They Hatin'" /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Clear Both</title>
<link href="https://comicss.art/comics/52" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/52/clear-both.html"/>
<id>https://comicss.art/comics/52</id>
<updated>2022-08-30T00:00:00Z</updated>
<summary>New cartoon: Clear Both</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="https://comicss.art/comics/52/clear-both.png" alt="Cartoon with 4 panels showing two fish swimming at the same level. One complains that the fishbowl is too small for both of them. The other one replies that it has a solution: clear:both! And now they are at different levels." /></p>
</div>
</content>
<rights>Copyright 2022 Alvaro Montoro</rights>
<author>
<name>Alvaro Montoro</name>
<email>alvaromontoro@gmail.com</email>
<uri>https://alvaromontoro.com</uri>
</author>
</entry>
<entry>
<title>Anchor</title>
<link href="https://comicss.art/comics/53" />
<link rel="alternate" type="text/html" href="https://comicss.art/comics/53/anchor.html"/>