-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathDateOnly in .NET 6 and ASP.NET Core 6 - CodeProject.html
More file actions
1924 lines (1837 loc) · 180 KB
/
DateOnly in .NET 6 and ASP.NET Core 6 - CodeProject.html
File metadata and controls
1924 lines (1837 loc) · 180 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
<!DOCTYPE html>
<!-- saved from url=(0081)https://www.codeproject.com/Articles/5325820/DateOnly-in-NET-6-and-ASP-NET-Core-6 -->
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1"><link rel="preload" as="image" imagesrcset="/_next/image?url=%2Flogo250x135.gif&w=256&q=75 1x, /_next/image?url=%2Flogo250x135.gif&w=640&q=75 2x"><link rel="stylesheet" href="./DateOnly in .NET 6 and ASP.NET Core 6 - CodeProject_files/f00fbee724adea66.css" data-precedence="next"><link rel="preload" as="script" fetchpriority="low" href="./DateOnly in .NET 6 and ASP.NET Core 6 - CodeProject_files/webpack-5ed466aeca77ac7a.js.download"><script src="./DateOnly in .NET 6 and ASP.NET Core 6 - CodeProject_files/4bd1b696-4098621b6d81f3cf.js.download" async=""></script><script src="./DateOnly in .NET 6 and ASP.NET Core 6 - CodeProject_files/684-7067fe44ff85ebe6.js.download" async=""></script><script src="./DateOnly in .NET 6 and ASP.NET Core 6 - CodeProject_files/main-app-f38f0d9153b95312.js.download" async=""></script><script async="" src="./DateOnly in .NET 6 and ASP.NET Core 6 - CodeProject_files/f(1).txt"></script><link rel="preload" href="./DateOnly in .NET 6 and ASP.NET Core 6 - CodeProject_files/js" as="script"><meta name="next-size-adjust" content=""><link rel="apple-touch-icon" sizes="144x144" href="https://www.codeproject.com/favicon/apple-touch-icon.png"><link rel="icon" type="image/png" sizes="32x32" href="https://www.codeproject.com/favicon/favicon-32x32.png"><link rel="icon" type="image/png" sizes="16x16" href="https://www.codeproject.com/favicon/favicon-16x16.png"><link rel="manifest" href="https://www.codeproject.com/favicon/manifest.json"><link rel="mask-icon" href="https://www.codeproject.com/favicon/safari-pinned-tab.svg" color="#ff9900"><meta property="og:title" content="CodeProject"><meta property="og:image" content="https://www.codeproject.com/favicon/mstile-150x150.png"><meta property="og:description" content="For those who code"><meta property="og:url" content="https://www.codeproject.com"><title>DateOnly in .NET 6 and ASP.NET Core 6 - CodeProject</title><link rel="manifest" href="https://www.codeproject.com/manifest.json"><script>document.querySelectorAll('body link[rel="icon"], body link[rel="apple-touch-icon"]').forEach(el => document.head.appendChild(el))</script><script src="./DateOnly in .NET 6 and ASP.NET Core 6 - CodeProject_files/polyfills-42372ed130431b0a.js.download" nomodule=""></script><link rel="preload" href="https://www.codeproject.com/_next/static/media/945b7384c5256ec3-s.p.ttf" as="font" crossorigin="" type="font/ttf"><link rel="preload" href="https://www.codeproject.com/_next/static/media/b55e164a6e7ce445-s.p.ttf" as="font" crossorigin="" type="font/ttf"><link rel="preload" href="https://www.codeproject.com/_next/static/media/e337cf18f0f81cb9-s.p.ttf" as="font" crossorigin="" type="font/ttf"><link rel="preload" href="https://www.codeproject.com/_next/static/media/f7794ce32483498f-s.p.ttf" as="font" crossorigin="" type="font/ttf"><meta http-equiv="origin-trial" content="AlK2UR5SkAlj8jjdEc9p3F3xuFYlF6LYjAML3EOqw1g26eCwWPjdmecULvBH5MVPoqKYrOfPhYVL71xAXI1IBQoAAAB8eyJvcmlnaW4iOiJodHRwczovL2RvdWJsZWNsaWNrLm5ldDo0NDMiLCJmZWF0dXJlIjoiV2ViVmlld1hSZXF1ZXN0ZWRXaXRoRGVwcmVjYXRpb24iLCJleHBpcnkiOjE3NTgwNjcxOTksImlzU3ViZG9tYWluIjp0cnVlfQ=="><meta http-equiv="origin-trial" content="Amm8/NmvvQfhwCib6I7ZsmUxiSCfOxWxHayJwyU1r3gRIItzr7bNQid6O8ZYaE1GSQTa69WwhPC9flq/oYkRBwsAAACCeyJvcmlnaW4iOiJodHRwczovL2dvb2dsZXN5bmRpY2F0aW9uLmNvbTo0NDMiLCJmZWF0dXJlIjoiV2ViVmlld1hSZXF1ZXN0ZWRXaXRoRGVwcmVjYXRpb24iLCJleHBpcnkiOjE3NTgwNjcxOTksImlzU3ViZG9tYWluIjp0cnVlfQ=="><meta http-equiv="origin-trial" content="A9wSqI5i0iwGdf6L1CERNdmsTPgVu44ewj8QxTBYgsv1LCPUVF7YmWOvTappqB1139jAymxUW/RO8zmMqo4zlAAAAACNeyJvcmlnaW4iOiJodHRwczovL2RvdWJsZWNsaWNrLm5ldDo0NDMiLCJmZWF0dXJlIjoiRmxlZGdlQmlkZGluZ0FuZEF1Y3Rpb25TZXJ2ZXIiLCJleHBpcnkiOjE3MzY4MTI4MDAsImlzU3ViZG9tYWluIjp0cnVlLCJpc1RoaXJkUGFydHkiOnRydWV9"><meta http-equiv="origin-trial" content="A+d7vJfYtay4OUbdtRPZA3y7bKQLsxaMEPmxgfhBGqKXNrdkCQeJlUwqa6EBbSfjwFtJWTrWIioXeMW+y8bWAgQAAACTeyJvcmlnaW4iOiJodHRwczovL2dvb2dsZXN5bmRpY2F0aW9uLmNvbTo0NDMiLCJmZWF0dXJlIjoiRmxlZGdlQmlkZGluZ0FuZEF1Y3Rpb25TZXJ2ZXIiLCJleHBpcnkiOjE3MzY4MTI4MDAsImlzU3ViZG9tYWluIjp0cnVlLCJpc1RoaXJkUGFydHkiOnRydWV9"><script src="./DateOnly in .NET 6 and ASP.NET Core 6 - CodeProject_files/f(2).txt" async=""></script><link href="https://securepubads.g.doubleclick.net/pagead/managed/dict/m202505080101/gpt" rel="compression-dictionary"><script async="" src="./DateOnly in .NET 6 and ASP.NET Core 6 - CodeProject_files/6839"></script><script async="" src="./DateOnly in .NET 6 and ASP.NET Core 6 - CodeProject_files/AGSKWxUWVmxR04xX4819675hbycv9qBCeEdYKfC2CgRw0XfB5d7FN5bpbqA1KF4KwSAHYWiDPU2nHYobOYddRVlc85cyG3uDZ0wINh1O7dOzJHCQpKZoPjdfEQ16IgWOVQ6vj9czPtZf7Q=="></script><script async="" src="./DateOnly in .NET 6 and ASP.NET Core 6 - CodeProject_files/AGSKWxXUAfc82lEJYus9gUlfge-vBmIz0QPLfYDF_o3hSdybgrADpgxJVvBHIsvm43W0VcMyVvXdoyQusfMGBYlq9WrUYXg1AmWpWM2t9gruJ6vy6LXaf6aTP-t9I4lwnq2mLMcUYiy1IQ=="></script><script async="" src="./DateOnly in .NET 6 and ASP.NET Core 6 - CodeProject_files/AGSKWxUwm6H2ANpCOgdr59ZfWY9IQdECdOUzA7UD3b8FKalj_WoHRqx2ebju8qyU0aHcOktSZJKhgtWv4AUQOLU4Vb2sv_AaDawcbz-GKjiPAFx-7J-SuRvulUI2ctWiCyiRFGy0dXYDyA=="></script></head><body class="__className_2277ee"><header><div class="custom-container gap-2 py-1 text-gray-light flex justify-between whitespace-nowrap z-10 relative px-1 md:px-0"><div class="flex-1 md:ml-20"><span class="hidden md:block">65.938<!-- --> articles</span><span class="block md:hidden">65.9<!-- -->K</span></div><div class="flex-1">CodeProject is changing.<!-- --> <a class="!text-gray-lightest" href="https://www.codeproject.com/info/Changes.aspx">Read more.</a></div><div class="flex-1"></div><div class="flex-1"></div></div><div class="mb-2 mt-2 md:mt-0"><div class="h-[94px] bg-primary"><div class="custom-container relative h-full"><a href="https://www.codeproject.com/"><img alt="Home" width="250" height="135" decoding="async" data-nimg="1" class="absolute -top-[31px]" style="color:transparent" srcset="/_next/image?url=%2Flogo250x135.gif&w=256&q=75 1x, /_next/image?url=%2Flogo250x135.gif&w=640&q=75 2x" src="./DateOnly in .NET 6 and ASP.NET Core 6 - CodeProject_files/logo250x135.gif"></a><div class="w-[calc(100%-300px)] translate-x-[300px] translate-y-[2px] h-[90px] relative overflow-hidden"><div id="div-gpt-ad-1738591571151-0" style="min-width:728px;min-height:90px" class="absolute top-0 left-0" data-google-query-id="CMPTrI_1l40DFQU9gwMdcEwY0w"><div id="google_ads_iframe_/67541884/CPLeader728_0__container__" style="border: 0pt none;"><iframe id="google_ads_iframe_/67541884/CPLeader728_0" name="google_ads_iframe_/67541884/CPLeader728_0" title="3rd party ad content" width="728" height="90" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" aria-label="Advertisement" tabindex="0" allow="private-state-token-redemption;attribution-reporting" data-load-complete="true" data-google-container-id="1" style="border: 0px; vertical-align: bottom;" src="./DateOnly in .NET 6 and ASP.NET Core 6 - CodeProject_files/saved_resource.html"></iframe></div></div></div></div></div></div><nav class="custom-container py-1 px-2 whitespace-nowrap"><ul class="flex gap-2 border-b border-border-gray"><li class="relative leading-normal hidden md:block"><a class="block py-0.5 px-2 font-bold cursor-pointer !text-gray-light border border-transparent" href="https://www.codeproject.com/">home</a></li><li class="relative leading-normal"><a class="block py-0.5 px-2 font-bold cursor-pointer !text-gray-light border border-transparent" href="https://www.codeproject.com/script/Articles/Latest.aspx">articles</a><ul class="absolute border border-border-gray bg-white border-b-4 border-b-primary pb-2 z-10 hidden bottom-0 left-0 translate-y-full translate-x-0"><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/SiteMap.aspx">Browse topics<span class="absolute top-1/2 right-1 -translate-y-1/2">></span></a><ul class="absolute border border-border-gray bg-white border-b-4 border-b-primary pb-2 z-10 hidden -top-[1px] right-0 translate-x-full"><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=AI">Artificial Intelligence<span class="absolute top-1/2 right-1 -translate-y-1/2">></span></a><ul class="absolute border border-border-gray bg-white border-b-4 border-b-primary pb-2 z-10 hidden -top-[1px] right-0 translate-x-full"><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Automation">Automation</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=big-data">big-data</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=machine-learning">machine-learning</a></li></ul></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Containers">Containers<span class="absolute top-1/2 right-1 -translate-y-1/2">></span></a><ul class="absolute border border-border-gray bg-white border-b-4 border-b-primary pb-2 z-10 hidden -top-[1px] right-0 translate-x-full"><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=docker">docker</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=virtual-machine">virtual-machine</a></li></ul></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=database">Database Development<span class="absolute top-1/2 right-1 -translate-y-1/2">></span></a><ul class="absolute border border-border-gray bg-white border-b-4 border-b-primary pb-2 z-10 hidden -top-[1px] right-0 translate-x-full"><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Elasticsearch">Elasticsearch</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Lucene">Lucene</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=MongoDB">mongodb</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=MySQL">MySQL</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=NoSQL">NoSQL</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=PostgreSQL">PostgreSQL</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Redis">Redis</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=SQL-Server">SQL Server</a></li></ul></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Desktop">Desktop Programming<span class="absolute top-1/2 right-1 -translate-y-1/2">></span></a><ul class="absolute border border-border-gray bg-white border-b-4 border-b-primary pb-2 z-10 hidden -top-[1px] right-0 translate-x-full"><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=ATL">ATL</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Cocoa">Cocoa</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=MFC">MFC</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=QT">QT</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Swing">Swing</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=system">system</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=UWP">UWP</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Win32">Win32</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=WinForms">WinForms</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=WPF">WPF</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=WTL">WTL</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=X11">X11</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=XAML">XAML</a></li></ul></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=DevOps">DevOps<span class="absolute top-1/2 right-1 -translate-y-1/2">></span></a><ul class="absolute border border-border-gray bg-white border-b-4 border-b-primary pb-2 z-10 hidden -top-[1px] right-0 translate-x-full"><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Agile">Agile</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Continuous-build">Continuous-build</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Continuous-delivery">Continuous-delivery</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Deployment">Deployment</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Git">Git</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=load-testing">load-testing</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=testing">testing</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=TFS">TFS</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=unit-testing">unit-testing</a></li></ul></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Game">Game Development<span class="absolute top-1/2 right-1 -translate-y-1/2">></span></a><ul class="absolute border border-border-gray bg-white border-b-4 border-b-primary pb-2 z-10 hidden -top-[1px] right-0 translate-x-full"><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Unity">Unity</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Unreal">Unreal</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=XBox">XBox</a></li></ul></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=performance">High Performance Computing<span class="absolute top-1/2 right-1 -translate-y-1/2">></span></a><ul class="absolute border border-border-gray bg-white border-b-4 border-b-primary pb-2 z-10 hidden -top-[1px] right-0 translate-x-full"><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=GPU">GPU</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=optimization">optimization</a></li></ul></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=IoT">Internet of Things<span class="absolute top-1/2 right-1 -translate-y-1/2">></span></a><ul class="absolute border border-border-gray bg-white border-b-4 border-b-primary pb-2 z-10 hidden -top-[1px] right-0 translate-x-full"><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=wearables">wearable</a></li></ul></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Mobile">Mobile Apps<span class="absolute top-1/2 right-1 -translate-y-1/2">></span></a><ul class="absolute border border-border-gray bg-white border-b-4 border-b-primary pb-2 z-10 hidden -top-[1px] right-0 translate-x-full"><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Android">Android</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=AWS">AWS</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Azure">Azure</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Cordova">Cordova</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=ExtJS">ExtJS</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=google-cloud">google-cloud</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=iOS">iOS</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=nativescript">nativescript</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=PhoneGap">PhoneGap</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=storage">storage</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=WinMobile">Windows Mobile</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Xamarin">Xamarin</a></li></ul></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Multimedia">Multimedia<span class="absolute top-1/2 right-1 -translate-y-1/2">></span></a><ul class="absolute border border-border-gray bg-white border-b-4 border-b-primary pb-2 z-10 hidden -top-[1px] right-0 translate-x-full"><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=ASM">ASM</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=ASP">ASP</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=audio">audio</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=audio-video">audio video</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Bash">Bash</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Basic">Basic</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Csharp">C#</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Cplusplus">C++</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=COBOL">cobol</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Compression">Compression</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Dart">Dart</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=dbase">dbase</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Design">Design/Graphics</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=DirectX">DirectX</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Emulation">Emulation</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Exceptions">Exceptions</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Fsharp">F#</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=file">file</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=GDI">GDI</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=GDIplus">GDI+</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Image-Processing">Image-Processing</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Internet">Internet</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Java">Java</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Javascript">Javascript</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=localization">localization</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Lua">Lua</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=MSIL">MSIL</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Objective-C">Objective C</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=OpenGL">OpenGL</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Pascal">Pascal</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Perl">Perl</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=PHP">PHP</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=PowerShell">PowerShell</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=printing">printing</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Python">Python</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Razor">Razor</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=regular-expression">regular expression</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Ruby">Ruby</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Scala">scala</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Shell">Shell</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Sorting">Sorting</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=SQL">SQL</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=string">string</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Swift">Swift</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=threads">threads</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=usability">usability</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=VB">VB</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=VB.NET">VB.NET</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=VBScript">VBScript</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Video">Video</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=XML">XML</a></li></ul></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=security">Security<span class="absolute top-1/2 right-1 -translate-y-1/2">></span></a><ul class="absolute border border-border-gray bg-white border-b-4 border-b-primary pb-2 z-10 hidden -top-[1px] right-0 translate-x-full"><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=blockchain">blockchain</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=cryptography">cryptography</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Encryption">Encryption</a></li></ul></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Web">Web Development<span class="absolute top-1/2 right-1 -translate-y-1/2">></span></a><ul class="absolute border border-border-gray bg-white border-b-4 border-b-primary pb-2 z-10 hidden -top-[1px] right-0 translate-x-full"><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Apache">Apache</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=ASP.NET">ASP.NET</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=CSS">CSS</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=CSS3">CSS3</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=HTML">HTML</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=HTML5">HTML5</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=IIS">IIS</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Kestrel">Kestrel</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=LESS">LESS</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Node.js">Node.js</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=React">React</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=Spring">Spring</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Content/Tag.aspx?tags=XHTML">XHTML</a></li></ul></li></ul></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Articles/Latest.aspx">Latest articles</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/Articles/TopArticles.aspx">Top articles</a></li></ul></li><li class="relative leading-normal"><a class="block py-0.5 px-2 font-bold cursor-pointer !text-gray-light border border-transparent" href="https://www.codeproject.com/Feature">features</a><ul class="absolute border border-border-gray bg-white border-b-4 border-b-primary pb-2 z-10 hidden bottom-0 left-0 translate-y-full translate-x-0"><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/script/News/List.aspx">News</a></li><li class="cursor-pointer block relative leading-normal box-border"><a href="https://sdnews.io/" class="py-0.5 px-5 block !text-inherit relative" rel="nofollow noreferrer">The Insider Newsletter</a></li><li class="cursor-pointer block relative leading-normal box-border"><a href="https://sdnews.io/" class="py-0.5 px-5 block !text-inherit relative" rel="nofollow noreferrer">The Daily Build Newsletter</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/Info/Stuff.aspx">CodeProject Stuff</a></li></ul></li><li class="relative leading-normal"><a class="block py-0.5 px-2 font-bold cursor-pointer !text-gray-light border border-transparent" href="https://www.codeproject.com/KB/FAQs">help</a><ul class="absolute border border-border-gray bg-white border-b-4 border-b-primary pb-2 z-10 hidden bottom-0 left-0 translate-y-full translate-x-0"><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/info/guide.aspx">What is 'CodeProject'?</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/KB/FAQs">General FAQ</a></li><li class="cursor-pointer block relative leading-normal box-border"><a class="py-0.5 px-5 block !text-inherit relative" href="https://www.codeproject.com/info/about.aspx">About Us</a></li></ul></li></ul></nav></header><main class="px-2 py-10"><div class="custom-container flex px-2 gap-8 overflow-hidden"><div class="w-[948px] max-w-full"><div class="flex gap-2 mb-2 flex-wrap"><a rel="tag" href="https://www.codeproject.com/Tags/OpenAPI" class="px-2 border border-border-yellow rounded-l-full text-gray-light visited:text-gray-light hover:underline hover:bg-yellow-light">OpenAPI</a><a rel="tag" href="https://www.codeproject.com/Tags/Typescript" class="px-2 border border-border-yellow rounded-l-full text-gray-light visited:text-gray-light hover:underline hover:bg-yellow-light">Typescript</a><a rel="tag" href="https://www.codeproject.com/Tags/.NET" class="px-2 border border-border-yellow rounded-l-full text-gray-light visited:text-gray-light hover:underline hover:bg-yellow-light">.NET</a><a rel="tag" href="https://www.codeproject.com/Tags/ASP.NET" class="px-2 border border-border-yellow rounded-l-full text-gray-light visited:text-gray-light hover:underline hover:bg-yellow-light">ASP.NET</a></div><h1 class="text-4xl text-text-gray">DateOnly in .NET 6 and ASP.NET Core 6</h1><div class="max-w-[600px]"><div class="flex pt-4 justify-between"><div class="text-base hover:underline font-bold"><a class="text-gray-lightest" href="https://www.codeproject.com/script/Membership/View.aspx?mid=3627575">Zijian</a></div><div class="flex items-center gap-2"><div class="flex"><img alt="starIcon" loading="lazy" width="24" height="24" decoding="async" data-nimg="1" style="color:transparent" srcset="/_next/image?url=%2Ficons%2FstarIcon.png&w=32&q=75 1x, /_next/image?url=%2Ficons%2FstarIcon.png&w=48&q=75 2x" src="./DateOnly in .NET 6 and ASP.NET Core 6 - CodeProject_files/starIcon.png"><img alt="starIcon" loading="lazy" width="24" height="24" decoding="async" data-nimg="1" style="color:transparent" srcset="/_next/image?url=%2Ficons%2FstarIcon.png&w=32&q=75 1x, /_next/image?url=%2Ficons%2FstarIcon.png&w=48&q=75 2x" src="./DateOnly in .NET 6 and ASP.NET Core 6 - CodeProject_files/starIcon.png"><img alt="starIcon" loading="lazy" width="24" height="24" decoding="async" data-nimg="1" style="color:transparent" srcset="/_next/image?url=%2Ficons%2FstarIcon.png&w=32&q=75 1x, /_next/image?url=%2Ficons%2FstarIcon.png&w=48&q=75 2x" src="./DateOnly in .NET 6 and ASP.NET Core 6 - CodeProject_files/starIcon.png"><img alt="starIcon" loading="lazy" width="24" height="24" decoding="async" data-nimg="1" style="color:transparent" srcset="/_next/image?url=%2Ficons%2FstarIcon.png&w=32&q=75 1x, /_next/image?url=%2Ficons%2FstarIcon.png&w=48&q=75 2x" src="./DateOnly in .NET 6 and ASP.NET Core 6 - CodeProject_files/starIcon.png"><img alt="starIcon" loading="lazy" width="24" height="24" decoding="async" data-nimg="1" style="color:transparent" srcset="/_next/image?url=%2Ficons%2FstarIcon.png&w=32&q=75 1x, /_next/image?url=%2Ficons%2FstarIcon.png&w=48&q=75 2x" src="./DateOnly in .NET 6 and ASP.NET Core 6 - CodeProject_files/starIcon.png"></div><p class="text-sm">5.00<!-- -->/5 (<!-- -->4<!-- --> vote<!-- -->s<!-- -->)</p></div></div><div class="flex pt-2 gap-4"><p class="text-gray-lightest text-[13px]">Feb 22, 2022</p><a class="text-[13px] flex" href="http://www.codeproject.com/info/cpol10.aspx">CPOL</a><p class="text-gray-lightest text-[13px]">7<!-- --> min read</p><div class="flex gap-1 items-center"><img alt="viewsIcon" loading="lazy" width="16" height="16" decoding="async" data-nimg="1" class="w-4 h-4" style="color:transparent" srcset="/_next/image?url=%2Ficons%2FviewsIcon.png&w=16&q=75 1x, /_next/image?url=%2Ficons%2FviewsIcon.png&w=32&q=75 2x" src="./DateOnly in .NET 6 and ASP.NET Core 6 - CodeProject_files/viewsIcon.png"><p class="text-gray-lightest text-[13px] pl-0.5">35828</p></div></div></div><p class="pt-6 pb-4 text-gray-lightest">Solutions for using DateOnly in ASP.NET Core 6, before 7 (Updated for .NET 7)</p><div class="max-w-full"><template shadowrootmode="open"><style>/*
This is the legacy article critical styles
They are added in order to reduce mvp development time
They should be refactored or completely replaced woth nextjs css modules in future
*/
::selection {
background-color: #f90;
color: #fff;
text-shadow: none;
}
.blank-background {
background-color: white;
}
html,
div,
span,
applet,
object,
iframe,
a,
abbr,
acronym,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
fieldset,
form,
label,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
li,
ol,
ul {
margin: 0;
padding: 0;
border: 0;
}
html {
font-size: 16px;
-webkit-font-smoothing: antialiased;
font-smooth: always;
}
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
li,
tr,
td,
th,
dd,
dt {
font-size: 16px;
line-height: 1.4;
color: #111111;
}
body {
margin: 0;
}
h1,
h3,
h4,
h5,
th {
font-weight: bold;
}
h1 {
color: #333333;
padding: 0px;
margin: 0 0 7px;
text-align: left;
}
h2 {
margin: 20px 0 11px;
padding: 0;
padding-bottom: 10px;
color: #333333;
}
h3 {
color: #ff9900;
}
h1 {
font-size: 38px;
font-weight: 400;
}
h2 {
font-size: 29px;
font-weight: 400;
}
h3 {
font-size: 19px;
font-weight: normal;
}
h4 {
font-size: 17px;
}
pre {
color: black;
background-color: #fbedbb;
padding: 6px;
font: 14px Consolas, monospace, mono;
white-space: pre;
overflow: auto;
border: solid 1px #fbedbb;
-moz-tab-size: 4;
-o-tab-size: 4;
-webkit-tab-size: 4;
tab-size: 4;
}
code {
color: #990000;
font: 15px Consolas, monospace, mono;
}
table {
background-color: Transparent;
}
img {
-ms-interpolation-mode: bicubic;
}
a {
text-decoration: none;
color: #005782;
}
a:visited {
color: #800080;
}
a:hover {
text-decoration: underline;
}
a:not([href]) {
color: inherit;
text-decoration: none;
}
input[type="text"],
input[type="url"],
input[type="search"],
input[type="email"],
input[type="number"],
input[type="password"],
select,
textarea {
border: 1px solid #d7d7d7;
font-size: 16px;
padding: 5px;
}
a.button,
a.button-large,
.button,
.button-large {
color: white;
background-color: #e08900;
border: 1px solid #cccccc;
text-decoration: none;
white-space: nowrap;
font-size: 100%;
padding: 4px;
cursor: pointer;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
}
table.small-text td,
ul.small-text li,
ol.small-text li,
.small-text {
font-size: 14px;
}
.invisible {
display: none;
}
.subdue,
.subdue li,
tr.subdue td {
color: #808080;
}
.bold {
font-weight: bold;
}
.align-left {
text-align: left;
}
.align-right {
text-align: right;
}
.align-center {
text-align: center;
}
.float-right {
float: right;
}
.float-left {
float: left;
}
.sticky {
position: sticky;
top: 0;
}
.extended {
width: 100%;
box-sizing: border-box;
}
.padded-top {
padding-top: 20px;
}
.tight {
margin: 0px;
padding: 0px;
}
.nowrap {
white-space: nowrap;
}
.fixed-layout {
table-layout: fixed;
}
.clip-text {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.raised {
background-color: #fff8df;
border: 1px solid #cccccc;
-moz-box-shadow: 4px 4px 16px 1px rgba(0, 0, 0, 0.25);
-webkit-box-shadow: 4px 4px 16px 1px rgba(0, 0, 0, 0.25);
box-shadow: 4px 4px 16px 1px rgba(0, 0, 0, 0.25);
}
ol,
ul {
padding-left: 40px;
margin: 10px 0;
}
ol.compact li,
ul.compact li,
ol li.compact,
ul li.compact {
font-size: 14px;
}
ul.download {
margin-top: 25px;
}
ul.download li,
ul li.download,
ul.Download li,
ul li.Download {
background: url("/images/download24.png") no-repeat scroll left center
transparent;
font-weight: bold;
list-style-type: none;
margin: 0px 0 6px -40px;
padding: 0 0 1px 30px;
vertical-align: middle;
}
.callout {
margin: 20px 0;
background-color: #ffffe1;
color: #333333;
border: 1px solid #cccccc;
padding: 15px;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
}
.trace {
padding: 20px;
background-color: #eeeeee;
color: #333333;
border: 1px solid red;
font-size: 13px;
}
textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
-webkit-appearance: none;
border-radius: 0;
}
.container-content {
background-color: white;
position: relative;
zoom: 1;
padding: 0 9px;
cursor: default;
}
.container-content-wrap {
margin: auto;
max-width: 1270px;
}
.container-content pre,
.container-code pre,
.answer pre {
white-space: pre-wrap;
/* css-3 */
white-space: -moz-pre-wrap;
/* Mozilla, since 1999 */
white-space: -pre-wrap;
/* Opera 4-6 */
white-space: -o-pre-wrap;
/* Opera 7 */
word-wrap: break-word;
/* Internet Explorer 5.5+ */
_white-space: pre;
/* IE only hack to re-specify in addition to word-wrap */
word-break: break-word;
-ms-word-break: break-word;
}
.flex-container {
display: -webkit-box;
/* OLD - iOS 6-, Safari 3.1-6 */
display: -moz-box;
/* OLD - Firefox 19- (buggy but mostly works) */
display: -ms-flexbox;
/* TWEENER - IE 10 */
display: -webkit-flex;
/* NEW - Chrome */
display: flex;
/* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.flex-extend {
justify-content: space-between;
}
.flex-wrap {
flex-wrap: wrap;
}
.flex-item {
-webkit-box-flex: 1;
/* OLD - iOS 6-, Safari 3.1-6 */
-moz-box-flex: 1;
/* OLD - Firefox 19- */
-webkit-flex: 1;
/* Chrome */
-ms-flex: 1;
/* IE 10 */
flex: 1;
}
.flex-item-tight {
flex: 0 1 auto;
}
.hover-container {
display: block;
position: relative;
}
.clearfix:after,
.container:after {
display: block;
content: ".";
visibility: hidden;
height: 0px;
clear: both;
}
.clearfix,
.container {
display: inline-block;
/* Mac IE5 sees this */
/* Mac IE5 comment hack \*/
display: block;
/* Mac IE5 doesn't see this, but everyone else does */
}
.access-link,
.access-link img {
position: absolute;
top: 0px;
left: 0px;
width: 1px;
height: 1px;
z-index: 101;
border-style: none;
margin-top: -1px;
overflow: hidden;
}
.site-top-menu {
white-space: nowrap;
position: absolute;
z-index: 101;
width: 100%;
}
.site-top-menu .main-content {
width: 100%;
}
.site-top-menu .main-content .memberbar {
margin-left: 90px;
margin-right: 10px;
}
.site-top-menu.fixed .main-content {
margin: auto;
max-width: 1270px;
}
.site-header {
background-image: url("/App_Themes/CodeProject/Img/logo135-bg.gif");
white-space: nowrap;
overflow: hidden;
}
.site-header .main-content {
position: relative;
overflow: hidden;
white-space: nowrap;
}
.site-header .logo {
display: inline-block;
}
.site-header .promo {
display: inline-block;
position: absolute;
top: 33px;
right: 0;
}
.site-header.fixed .main-content {
margin: auto;
max-width: 1270px;
}
.sub-headerbar {
padding-right: 9px;
position: relative;
margin: auto;
max-width: 1270px;
}
.sub-headerbar-divider {
margin-left: 10px;
height: 1px;
border-bottom: 1px solid #cccccc;
position: absolute;
bottom: 2px;
left: 0px;
right: 9px;
}
.memberbar {
height: 25px;
padding-top: 10px;
color: #999999;
font-size: 14px;
}
.memberbar a {
color: #808080;
font-size: 14px;
}
div.navbar {
white-space: nowrap;
}
.navmenu {
background: white;
color: #4d4d4d;
padding: 0px;
margin: 0px;
list-style: none;
height: 25px;
}
.navmenu ul,
.navmenu li {
margin: 0;
padding: 0;
}
.navmenu .has-submenu {
position: absolute;
right: 5px;
padding-left: 10px;
}
.navmenu > li:hover > a,
.navmenu > li > a:active {
border: 1px solid #cccccc;
}
.navmenu ul,
.navmenu > li.open:hover > a,
.navmenu > li.open > a:active {
border: 1px solid #cccccc;
border-bottom-color: white;
}
.navmenu > li {
margin: 0 11px 2px 2px;
}
.navmenu > li:active,
.navmenu > li:active > a,
.navmenu > li:hover,
.navmenu > li > a:active {
background: white;
color: #4d4d4d;
}
.navmenu > li.openable > a:active,
.navmenu > li.openable:hover > a {
/*border-bottom: 1px solid @ColourBack-Menu; */
}
.navmenu > li > a {
padding: 2px 7px 6px 7px;
border: 1px solid transparent;
font-weight: bold;
}
.navmenu a {
display: block;
float: left;
color: #666666;
background: white;
font-size: 17px;
padding: 0px 9px;
text-decoration: none;
white-space: nowrap;
}
.navmenu a.fly {
white-space: nowrap;
}
.navmenu ul {
background: white;
position: absolute;
left: -9999px;
top: -9999px;
list-style: none;
}
.navmenu li {
float: left;
color: #4d4d4d;
}
.navmenu li.last {
height: 9px;
}
.navmenu li a:active,
.navmenu li a:hover {
color: white;
background-color: #ff9900;
}
.navmenu li > a:active,
.navmenu li:hover,
.navmenu li:hover > a,
.navmenu li:hover.heading,
.navmenu li a.selected {
position: relative;
color: white;
background-color: #ff9900;
}
.navmenu li.openable:hover ul {
left: 0px;
top: 30px;
z-index: 500;
}
.navmenu li.openable:hover > ul ul {
position: absolute;
left: -9999px;
top: -9999px;
width: auto;
}
.navmenu li ul {
border-bottom: 5px solid #ff9900;
}
.navmenu li li {
float: none;
}
.navmenu li li a {
float: none;
font-size: 16px;
font-weight: normal;
}
.navmenu li li a.fly {
color: #4d4d4d;
background-color: white;
padding: 2px 20px;
}
.navmenu li li a.break {
margin-bottom: 15px;
}
.navmenu li li a.highlight1,
.navmenu li li a.highlight1:active,
.navmenu li li a.highlight1:hover {
background-color: #009900;
}
.navmenu li li a.highlight2,
.navmenu li li a.highlight2:active,
.navmenu li li a.highlight2:hover {
background-color: #ff9900;
}
.navmenu li li a.highlight3,
.navmenu li li a.highlight3:active,
.navmenu li li a.highlight3:hover {
background-color: #000000;
}
.navmenu li li a.highlight1,
.navmenu li li a.highlight2,
.navmenu li li a.highlight3 {
color: white;
font-size: 16px;
margin: 5px 0;
padding: 9px 20px;
}
.site-footer {
display: -webkit-box;
/* OLD - iOS 6-, Safari 3.1-6 */
display: -moz-box;
/* OLD - Firefox 19- (buggy but mostly works) */
display: -ms-flexbox;
/* TWEENER - IE 10 */
display: -webkit-flex;
/* NEW - Chrome */
display: flex;
/* NEW, Spec - Opera 12.1, Firefox 20+ */
padding-top: 5px;
width: 100%;
font-size: 13px;
color: #999999;
}
.site-footer .align-left,
.site-footer .align-center,
.site-footer .align-right {
-webkit-box-flex: 1;
/* OLD - iOS 6-, Safari 3.1-6 */
-moz-box-flex: 1;
/* OLD - Firefox 19- */
-webkit-flex: 1;
/* Chrome */
-ms-flex: 1;
/* IE 10 */
flex: 1;
}
.site-footer .align-left {
flex: 1 0 100px;
}
.site-footer .align-center {
flex: 0 1 0%;
white-space: nowrap;
}
.site-footer .align-right {
flex: 1 0 100px;
}
.site-footer .page-width .active {
border-bottom: 2px solid #ff9900;
}
.searchbar {
padding: 0;
}
.searchbar .search {
margin-bottom: 4px;
padding: 2px 5px 0px;
border: 1px solid #cccccc;
}
.searchbar .search.subdue {
color: #cccccc;
}
.searchbar input.search {
width: 190px;
border: none;
font-size: 13px;
padding: 4px 2px;
}
.searchbar .search-advanced {
padding: 8px;
width: 203px;
z-index: 1000;
background-color: white;
border: solid 1px #cccccc;
position: absolute;
top: -4px;
right: 0px;
}
.searchbar .popup {
display: none;
}
.sub-headerbar .searchbar {
/*
.search-advanced
{
.transition(width, .1s, linear);
&.open
{
width: 320px;
}
}
*/
}
.sub-headerbar .searchbar input.search {
/*
&:focus,&:active
{
position : absolute;
top : 3px;
right : 36px;
height : 19px;
border : 1px solid #ccc;
border-right : none;
width: 300px;
.transition(width, .1s, linear);
}
*/
}
.search td {
background-color: white;
}
.article-container-parts {
display: -webkit-box;
/* OLD - iOS 6-, Safari 3.1-6 */
display: -moz-box;
/* OLD - Firefox 19- (buggy but mostly works) */
display: -ms-flexbox;
/* TWEENER - IE 10 */
display: -webkit-flex;
/* NEW - Chrome */
display: flex;
/* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.article-container {
-webkit-box-flex: 1;
/* OLD - iOS 6-, Safari 3.1-6 */
-moz-box-flex: 1;
/* OLD - Firefox 19- */
-webkit-flex: 1;
/* Chrome */
-ms-flex: 1;
/* IE 10 */
flex: 1;
background-color: white;
color: #111111;
zoom: 1;
position: relative;
max-width: 100%;
min-height: 675px;
}
.article-container .article {
margin: 0 20px 0 10px;
line-height: 143%;
}
.article-container span.stats {
margin-left: 30px;
}
.article-left-sidebar {
width: 120px;
min-width: 120px;
min-height: 400px;
font-size: 14px;
border-right: 1px solid #f2f2f2;
padding: 0;
/* Old school style */
/*
.license {
font-weight: bold;
display: inline-block;
margin-top: 10px;
}
*/
}
.article-left-sidebar .article-left-sidebar-inner {
width: 120px;
min-width: 120px;
}
.article-left-sidebar .tabs > div {
padding: 5px 0 5px 10px;
}
.article-left-sidebar .selected {
font-weight: bold;
background: transparent url("/images/right-selected.gif") no-repeat scroll
right 9px;
}
.article-left-sidebar h4 {
color: #ff9900;
font-size: 14px;
font-weight: bold;
}
.article-left-sidebar .stats div div div {
padding: 0px 0 10px 10px;
color: #666666;
}
.article-right-sidebar {
width: 300px;
margin-left: 10px;
font-size: 14px;
}
.article-right-sidebar .header {
font-size: 22px;
color: white;
background-color: #ff9900;
padding: 8px;
font-weight: 400;
margin: 0;
}
.article-right-sidebar .reading-list-toc {
max-height: 250px;
overflow-y: auto;
padding-right: 6px;
margin-top: 5px;
}
.article-right-sidebar .reading-list-toc .count {
font-weight: normal;
font-size: 13px;
}
.article-right-sidebar .reading-list-toc .title {
font-size: 16px;
}
.article-right-sidebar .content-list-item {
display: -webkit-box;
/* OLD - iOS 6-, Safari 3.1-6 */
display: -moz-box;
/* OLD - Firefox 19- (buggy but mostly works) */
display: -ms-flexbox;
/* TWEENER - IE 10 */
display: -webkit-flex;
/* NEW - Chrome */
display: flex;
/* NEW, Spec - Opera 12.1, Firefox 20+ */
justify-content: space-between;
font-size: 14px;
margin: 4px 0;
}
.article-right-sidebar .content-list-item .count {
width: 15%;
padding: 0px;
}
.article-right-sidebar .content-list-item .title {
width: 85%;
font-weight: normal;
}
.article-right-sidebar .gototop {
text-align: center;
padding: 10px 0;
opacity: 0;
-webkit-transition: opacity 0.3s linear 0ms;
-moz-transition: opacity 0.3s linear 0ms;
-o-transition: opacity 0.3s linear 0ms;
transition: opacity 0.3s linear 0ms;
}
.container-content .edit-links {
margin: 21px 0 0 10px;
}
.article-summary {
padding: 0px 10px 0px 10px;
overflow: hidden;
}
.article h1 {
margin: 0 0 15px 0;
}
.article h2 {
color: #ff9900;
}
.article pre {
overflow: auto;
}
.article .header .title {
color: #808080;
}
.article .header .author {
font-weight: bold;
min-width: 100px;
}
.article .header .author a {
color: #808080;
}
.article .header .avatar {
max-width: 48px;
max-height: 48px;
overflow: unset;
}
.article .header .avatar-wrap {
width: 48px;
height: 48px;
margin-right: 10px;
text-align: center;
}
.article .header .date {
white-space: nowrap;
}
.article .header .license {
margin-left: 15px;
}
.article .header .stats {
margin-left: 30px;
}
.article img.lazyload,
.article img.lazyloading {
opacity: 0;
}
.article img {
max-width: 700px;
height: auto;
}
.article img.lazyloaded {
opacity: 1;
transition: opacity 300ms;
}
.article .summary {
color: #808080;
padding: 40px 0 15px 0;
}
.article .text {
padding-top: 10px;
}
.article .reading-list-nav {
border-top: 1px #dedede solid;
border-bottom: 1px #dedede solid;
padding: 10px 0;
}
.article .reading-list-nav .prev {
padding-left: 20px;
}
.article .reading-list-nav .next {
margin-left: 5px;
padding-right: 20px;
text-align: right;
}
.article-nav {
text-align: right;
margin-top: 21px;
vertical-align: middle;
line-height: 15px;
}
.msg-728x90 {
width: 728px;
height: 90px;
overflow: hidden;
}
.msg-300x250 {
width: 300px;
height: 250px;
overflow: hidden;
}
.content-list {
margin-bottom: 17px;
}
.content-list .count {
font-weight: bold;
font-size: 16px;
color: #ff9900;
padding: 3px;
text-align: center;
}
.content-list-item {
margin: 10px 0;
}
.content-list-item .title {
font-size: 14px;
font-weight: bold;
padding: 0px 0;
}
.content-list-item .title a {
color: #005782;
}
.tags {
line-height: 190%;
}
.tags .t {
background: none repeat scroll 0 0 transparent;
border: 1px solid #fbedbb;
border-radius: 12px 0 0 12px;
line-height: 1.4;
padding: 0 2px 2px 3px;
position: relative;
text-decoration: none;
margin: 2px 5px 4px 0;
white-space: nowrap;
}
.tags .t a {
color: #666666;
display: inline-block;
margin-right: 3px;
padding-left: 5px;
text-overflow: ellipsis;
}
.container-breadcrumb {
font-size: 14px;
margin-top: 7px;
color: #808080;
margin: 12px 0 35px;
}
.container-breadcrumb a {
color: #808080;
}
.pre-lang {
display: -webkit-box;
/* OLD - iOS 6-, Safari 3.1-6 */
display: -moz-box;
/* OLD - Firefox 19- (buggy but mostly works) */
display: -ms-flexbox;
/* TWEENER - IE 10 */
display: -webkit-flex;
/* NEW - Chrome */
display: flex;
/* NEW, Spec - Opera 12.1, Firefox 20+ */
background-color: #fbedbb;
justify-content: space-between;