-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path1da39dca52879bf495d372f2729b6f32.html
More file actions
1142 lines (1129 loc) · 138 KB
/
1da39dca52879bf495d372f2729b6f32.html
File metadata and controls
1142 lines (1129 loc) · 138 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><html lang="en"><head>
<title>All the new iPhone features, from the iPhone 11 to the iPhone 15 | Mashable</title>
<meta charset="utf-8">
<link rel="canonical" href="https://mashable.com/article/iphone-11-to-iphone-15">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#00aeef">
<meta name="application-name" content="Mashable.com">
<meta name="description" content="No, iPhones aren't all 'the same.' All the new features from iPhone 11 to iPhone 15">
<meta property="fb:app_id" content="122071082108">
<meta property="fb:pages" content="18807449704">
<meta property="og:site_name" content="Mashable">
<meta property="og:title" content="No, iPhones aren't all 'the same.' All the new features from iPhone 11 to iPhone 15.">
<meta property="og:url" content="https://mashable.com/article/iphone-11-to-iphone-15">
<meta property="og:description" content="The new Action Button is elite.">
<meta property="og:image" content="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/hero-image.fill.size_1200x675.v1703234185.jpg">
<meta property="og:image:secure_url" content="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/hero-image.fill.size_1200x675.v1703234185.jpg">
<meta property="og:image:height" content="675">
<meta property="og:image:width" content="1200">
<meta property="og:type" content="article">
<meta property="article:author" content="Kimberly Gedeon">
<meta property="article:modified_time" content="2023-12-24T02:00:15+00:00">
<meta property="article:published_time" content="2023-12-22T11:00:00+00:00">
<meta property="article:section" content="Tech">
<meta name="twitter:site" content="@mashable">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:creator" content="@mashable">
<meta property="twitter:title" content="No, iPhones aren't all 'the same.' All the new features from iPhone 11 to iPhone 15.">
<meta property="twitter:description" content="The new Action Button is elite.">
<meta property="twitter:image" content="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/hero-image.fill.size_1200x675.v1703234185.jpg">
<meta name="robots" content="max-image-preview:large">
<link rel="alternate" type="application/rss+xml" title="RSS" href="https://mashable.com/feeds/rss/all">
<link rel="alternate" hreflang="en" href="https://mashable.com/article/iphone-11-to-iphone-15">
<link rel="alternate" hreflang="en-ae" href="https://me.mashable.com/tech/36205/no-iphones-arent-all-the-same-all-the-new-features-from-iphone-11-to-iphone-15">
<link rel="alternate" hreflang="en-my" href="https://sea.mashable.com/tech/30022/no-iphones-arent-all-the-same-all-the-new-features-from-iphone-11-to-iphone-15">
<link rel="alternate" hreflang="en-sg" href="https://sea.mashable.com/tech/30022/no-iphones-arent-all-the-same-all-the-new-features-from-iphone-11-to-iphone-15">
<link rel="alternate" hreflang="en-us" href="https://mashable.com/article/iphone-11-to-iphone-15">
<link rel="alternate" hreflang="x-default" href="https://mashable.com/article/iphone-11-to-iphone-15">
<link rel="shortcut icon mask-icon" href="/favicons/favicon.svg" color="#000">
<link rel="icon" type="image/png" href="/favicons/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="/favicons/favicon-32x32.png" sizes="32x32">
<link rel="apple-touch-icon" sizes="180x180" href="/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" href="/favicons/android-chrome-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="/favicons/android-chrome-512x512.png" sizes="512x512">
<link rel="manifest" href="/manifest.json" crossorigin="use-credentials">
<link rel="stylesheet" href="/css/app.css?id=bc2586b8761624b1d7639744d6d31eba">
<script type="application/ld+json">{"@context":"https:\/\/schema.org","@type":"NewsArticle","headline":"All the new iPhone features, from the iPhone 11 to the iPhone 15","datePublished":"2023-12-22T11:00:00+00:00","publisher":{"@type":"Organization","url":"https:\/\/mashable.com\/","name":"Mashable","logo":{"@type":"ImageObject","url":"https:\/\/mashable.com\/images\/mashable-logomark.png","width":2400,"height":2400},"sameAs":["https:\/\/www.facebook.com\/mashable\/","https:\/\/twitter.com\/mashable","https:\/\/flipboard.com\/@Mashable","https:\/\/www.pinterest.com\/mashable\/","https:\/\/www.youtube.com\/user\/mashable"],"description":"Mashable is a global, multi-platform media and entertainment company.\n Powered by its own proprietary technology, Mashable is the go-to source for tech,\n digital culture and entertainment content for its dedicated and influential audience around the globe."},"author":[{"@type":"Person","name":"Kimberly Gedeon","email":"kim.gedeon@ziffdavis.com","url":"https:\/\/mashable.com\/author\/kim-gedeon","jobTitle":"East Coast Tech Editor","image":[{"@type":"ImageObject","url":"https:\/\/helios-i.mashable.com\/imagery\/defaults\/fallback-thumbnail.fill.size_1200x675.1.png","width":1200,"height":675,"caption":"Default Image"},{"@type":"ImageObject","url":"https:\/\/helios-i.mashable.com\/imagery\/defaults\/fallback-thumbnail.fill.size_1200x900.1.png","width":1200,"height":900,"caption":"Default Image"},{"@type":"ImageObject","url":"https:\/\/helios-i.mashable.com\/imagery\/defaults\/fallback-thumbnail.fill.size_1200x1200.1.png","width":1200,"height":1200,"caption":"Default Image"}]}],"image":[{"@type":"ImageObject","url":"https:\/\/helios-i.mashable.com\/imagery\/articles\/0438vUKMXKmgJLDe4ztihZK\/hero-image.fill.size_1200x675.v1703234185.jpg","width":1200,"height":675,"caption":"Don't be confused. Here are all the new features, from the iPhone 11 to iPhone 15"},{"@type":"ImageObject","url":"https:\/\/helios-i.mashable.com\/imagery\/articles\/0438vUKMXKmgJLDe4ztihZK\/hero-image.fill.size_1200x900.v1703234185.jpg","width":1200,"height":900,"caption":"Don't be confused. Here are all the new features, from the iPhone 11 to iPhone 15"},{"@type":"ImageObject","url":"https:\/\/helios-i.mashable.com\/imagery\/articles\/0438vUKMXKmgJLDe4ztihZK\/hero-image.fill.size_1200x1200.v1703234185.jpg","width":1200,"height":1200,"caption":"Don't be confused. Here are all the new features, from the iPhone 11 to iPhone 15"}],"description":"The new Action Button is elite.","mainEntityOfPage":"https:\/\/mashable.com\/article\/iphone-11-to-iphone-15","articleSection":"Tech"}</script>
<script type="application/ld+json">{"@context":"https:\/\/schema.org","@type":"Organization","url":"https:\/\/mashable.com\/","name":"Mashable","logo":{"@type":"ImageObject","url":"https:\/\/mashable.com\/images\/mashable-logomark.png","width":2400,"height":2400},"sameAs":["https:\/\/www.facebook.com\/mashable\/","https:\/\/twitter.com\/mashable","https:\/\/flipboard.com\/@Mashable","https:\/\/www.pinterest.com\/mashable\/","https:\/\/www.youtube.com\/user\/mashable"],"description":"Mashable is a global, multi-platform media and entertainment company.\n Powered by its own proprietary technology, Mashable is the go-to source for tech,\n digital culture and entertainment content for its dedicated and influential audience around the globe."}</script> <script type="application/ld+json">{"@context":"https:\/\/schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/mashable.com"},{"@type":"ListItem","position":2,"name":"Tech","item":"https:\/\/mashable.com\/tech"}]}</script>
<link rel="preconnect" href="//cdn.ziffstatic.com">
<link rel="preconnect" href="//www.googletagmanager.com">
<link rel="preconnect" href="https://use.typekit.net">
<link rel="preload" href="/fonts/Outfit.woff2" as="font" type="font/woff2" crossorigin="">
<link rel="preload" href="https://g.mashable.com/mashable.js?url=https%3A%2F%2Fmashable.com%2Farticle%2Fiphone-11-to-iphone-15" as="script">
<script type="text/javascript" src="https://g.mashable.com/mashable.js?url=https%3A%2F%2Fmashable.com%2Farticle%2Fiphone-11-to-iphone-15" async=""></script>
<link rel="preload" as="image" href="/images/icons/spritemap.svg">
<link rel="preload" href="https://cdn.ziffstatic.com/jst/zdconsent.js" as="script">
<script type="text/javascript" src="https://cdn.ziffstatic.com/jst/zdconsent.js" async=""></script>
<link rel="preload" href="https://cdn.static.zdbb.net/js/z0WVjCBSEeGLoxIxOQVEwQ.min.js" as="script">
<script type="text/javascript" src="https://cdn.static.zdbb.net/js/z0WVjCBSEeGLoxIxOQVEwQ.min.js" async=""></script>
<link rel="preload" href="https://www.google-analytics.com/analytics.js" as="script">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
window.globalGAInfo = {"page_view_type":"Standard","template":"article","content_type":"article","transport_type":"beacon","allow_ad_personalization_signals":false,"test_uuid":null,"test_version":null,"custom_map":{"dimension10":"content_type","dimension11":"channel_name","dimension12":"post_lead_type","dimension13":"content_source_type","dimension14":"content_source_name","dimension15":"author_name","dimension17":"day_published","dimension18":"month_published","dimension19":"year_published","dimension20":"full_published_date","dimension21":"video_show_name","dimension23":"cms_id","dimension27":"level_of_effort","dimension29":"job_function","dimension32":"tags","dimension33":"story_flags","dimension34":"categories","dimension36":"page_view_type","dimension38":"ad_block","dimension41":"videoId","dimension42":"videoPlayType","dimension43":"videoPlayerType","dimension44":"videoUrl","dimension45":"revenue_page_type","dimension46":"videoName","dimension49":"template","dimension50":"module","dimension51":"element","dimension52":"item","dimension53":"position","dimension62":"object_type","dimension63":"object_uuid","dimension65":"test_uuid","dimension66":"test_version","dimension67":"original_published_date","dimension69":"days_since_updated","dimension70":"weeks_since_updated","dimension71":"days_since_originally_published","dimension72":"weeks_since_originally_published","dimension82":"focus_keyword","dimension83":"linked_phrases"},"cms_id":null,"object_uuid":"0438vUKMXKmgJLDe4ztihZK","object_type":"article","title":"No, iPhones aren\u0027t all \u0027the same.\u0027 All the new features from iPhone 11 to iPhone 15.","canonical_url":"https:\/\/mashable.com\/article\/iphone-11-to-iphone-15","full_published_date":"12\/22\/2023","original_published_date":"12\/22\/2023","revenue_page_type":"shoppable","channel_name":"Tech","focus_keyword":"iPhone 11 to iPhone 15 features","job_function":"Explainer\/Analysis","level_of_effort":"Multi-day","story_flags":"comm_edit","content_source_name":"Internal","video_show_name":"","content_source_type":"Internal","author_name":"Kimberly Gedeon","day_published":22,"month_published":12,"year_published":2023,"days_since_updated":2,"weeks_since_updated":0,"days_since_originally_published":2,"weeks_since_originally_published":0,"categories":"","sections":"Tech","tags":"","post_lead_type":"Alt Image Lead"};
window.globalGAInfo.page_path = window.location.pathname;
ga('create', 'UA-92124-1', 'auto');
if (typeof window._ziffIntlGeoRedirect === 'undefined') {
ga('send', 'pageview', {
'dimension10': window.globalGAInfo.content_type || null,
'dimension11': window.globalGAInfo.channel_name || null,
'dimension12': window.globalGAInfo.post_lead_type || null,
'dimension13': window.content_source_type || null,
'dimension14': window.globalGAInfo.content_source_name || null,
'dimension15': window.globalGAInfo.author_name || null,
'dimension17': window.globalGAInfo.day_published || null,
'dimension18': window.globalGAInfo.month_published || null,
'dimension19': window.globalGAInfo.year_published || null,
'dimension20': window.globalGAInfo.full_published_date || null,
'dimension21': window.globalGAInfo.video_show_name || null,
'dimension23': window.globalGAInfo.cms_id || null,
'dimension27': window.globalGAInfo.level_of_effort || null,
'dimension29': window.globalGAInfo.job_function || null,
'dimension32': window.globalGAInfo.tags || null,
'dimension33': window.globalGAInfo.story_flags || null,
'dimension34': window.globalGAInfo.categories || null,
'dimension36': window.globalGAInfo.page_view_type || null,
'dimension38': window.adblock ? 'Blocked' : 'NotBlocked',
'dimension41': window.globalGAInfo.videoId || null,
'dimension42': window.globalGAInfo.videoPlayType || null,
'dimension43': window.globalGAInfo.videoPlayerType || null,
'dimension44': window.globalGAInfo.videoUrl || null,
'dimension45': window.globalGAInfo.revenue_page_type || null,
'dimension46': window.globalGAInfo.videoName || null,
'dimension49': window.globalGAInfo.template || null,
'dimension50': window.globalGAInfo.module || null,
'dimension51': window.globalGAInfo.element || null,
'dimension52': window.globalGAInfo.item || null,
'dimension53': window.globalGAInfo.position || null,
'dimension62': window.globalGAInfo.object_type || null,
'dimension63': window.globalGAInfo.object_uuid || null,
'dimension65': window.globalGAInfo.test_uuid || null,
'dimension66': window.globalGAInfo.test_version || null,
'dimension67': window.globalGAInfo.original_published_date || null,
'dimension69': window.globalGAInfo.days_since_updated || null,
'dimension70': window.globalGAInfo.weeks_since_updated || null,
'dimension71': window.globalGAInfo.days_since_originally_published || null,
'dimension72': window.globalGAInfo.weeks_since_originally_published || null,
'dimension82': window.globalGAInfo.focus_keyword || null,
'dimension83': window.linked_phrases || null,
});
}
</script>
<script async="" src="https://www.googletagmanager.com/gtag/js?id=G-BPBF083TYP"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-BPBF083TYP',{
'send_page_view': false,
});
if (typeof window._ziffIntlGeoRedirect === 'undefined') {
gtag('event', 'page_view', {
ad_block: window.adblock ? 'Blocked' : 'NotBlocked',
author: window.globalGAInfo.author_name || null,
categories: window.globalGAInfo.categories || null,
channel_name: window.globalGAInfo.channel_name || null,
content_lead_type: window.globalGAInfo.post_lead_type || null,
content_source_name: window.globalGAInfo.content_source_name || null,
content_source_type: window.globalGAInfo.content_source_type || null,
day_published: window.globalGAInfo.day_published || null,
days_since_originally_published: window.globalGAInfo.days_since_originally_published || null,
days_since_updated: window.globalGAInfo.days_since_updated || null,
element: window.globalGAInfo.element || null,
first_published_at: window.globalGAInfo.original_published_date || null,
focus_keyword: window.globalGAInfo.focus_keyword || null,
item: window.globalGAInfo.item || null,
job_function: window.globalGAInfo.job_function || null,
level_of_effort: window.globalGAInfo.level_of_effort || null,
linked_phrases: window.linked_phrases || null,
module: window.globalGAInfo.module || null,
month_published: window.globalGAInfo.month_published || null,
object_type: window.globalGAInfo.object_type || null,
object_uuid: window.globalGAInfo.object_uuid || null,
pageview_type: window.globalGAInfo.page_view_type || null,
position: window.globalGAInfo.position || null,
published_at: window.globalGAInfo.full_published_date || null,
revenue_page_type: window.globalGAInfo.revenue_page_type || null,
story_flags: window.globalGAInfo.story_flags || null,
tags: window.globalGAInfo.tags || null,
template: window.globalGAInfo.template || null,
test_uuid: window.globalGAInfo.test_uuid || null,
test_version: window.globalGAInfo.test_version || null,
video_id: window.globalGAInfo.video_id || null,
video_name: window.globalGAInfo.video_name || null,
video_play_type: window.globalGAInfo.video_play_type || null,
video_player_type: window.globalGAInfo.video_player_type || null,
video_show_name: window.globalGAInfo.video_show_name || null,
video_url: window.globalGAInfo.video_url || null,
weeks_since_originally_published: window.globalGAInfo.weeks_since_originally_published || null,
weeks_since_updated: window.globalGAInfo.weeks_since_updated || null,
year_published: window.globalGAInfo.year_published || null,
});
}
</script>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-MN78SWW');</script>
<script type="text/javascript">
(function() {
let sections = '';
if (window.globalGAInfo.sections) {
sections = window.globalGAInfo.sections.split(',').map(item => 'Category - ' + item.trim()).join(',');
}
//Adding tags into sections with "Tag - " prefix for chartbeat reporting
if (window.globalGAInfo.tags) {
sections += (sections !== '' ? ',' : '') + window.globalGAInfo.tags.split(',').map(item => 'Tag - ' + item.trim()).join(',');
}
if (window.globalGAInfo.content_type) {
sections += (sections !== '' ? ',' : '') + 'Content Type - ' + window.globalGAInfo.content_type;
}
var _sf_async_config = window._sf_async_config = (window._sf_async_config || {});
/** CONFIGURATION START **/
_sf_async_config.uid = 65789;
_sf_async_config.domain = 'mashable.com';
_sf_async_config.useCanonical = true;
_sf_async_config.useCanonicalDomain = true;
_sf_async_config.sections = sections;
_sf_async_config.authors = window.globalGAInfo.author_name || '';
_sf_async_config.type = window.globalGAInfo.content_type || '';
/** CONFIGURATION END **/
function loadChartbeat() {
var e = document.createElement('script');
var n = document.getElementsByTagName('script')[0];
e.type = 'text/javascript';
e.async = true;
e.src = '//static.chartbeat.com/js/chartbeat_video.js';
n.parentNode.insertBefore(e, n);
}
loadChartbeat();
})();
</script>
<script>
var facebookPixelLoaded = false;
window.addEventListener('load', function(){
document.addEventListener('scroll', facebookPixelScript);
document.addEventListener('mousemove', facebookPixelScript);
})
function facebookPixelScript() {
if (!facebookPixelLoaded) {
facebookPixelLoaded = true;
document.removeEventListener('scroll', facebookPixelScript);
document.removeEventListener('mousemove', facebookPixelScript);
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
document,'script','//connect.facebook.net/en_US/fbevents.js');
fbq('init', '1453039084979896');
fbq('track', "PageView");
}
}
</script>
<script type="text/javascript" id="pogo" src="https://cdn.ziffstatic.com/pg/mashable.js" async=""></script>
<link rel="preload" as="script" href="https://cdn.ziffstatic.com/pg/mashable.js">
<link rel="preload" as="script" href="https://cdn.ziffstatic.com/pg/mashable.prebid.js">
<link rel="preload" as="style" href="https://cdn.ziffstatic.com/pg/mashable.css" onload="this.onload=null;this.rel='stylesheet'">
<link rel="preload" as="script" href="https://securepubads.g.doubleclick.net/tag/js/gpt.js">
<script type="text/javascript" src="https://securepubads.g.doubleclick.net/tag/js/gpt.js" async=""></script>
<script>
window.PogoConfig =
{
"template": "article",
"category": "tech",
"tags": ["tech"],
}
</script>
<script>
(function(d) {
var bounceExchangeLoaded = false;
window.addEventListener('load', function(){
document.addEventListener('scroll', bounceExchangeScript);
document.addEventListener('mousemove', bounceExchangeScript);
})
function bounceExchangeScript() {
if (!bounceExchangeLoaded) {
bounceExchangeLoaded = true;
document.removeEventListener('scroll', bounceExchangeScript);
document.removeEventListener('mousemove', bounceExchangeScript);
var e = d.createElement('script');
e.src = d.location.protocol + '//tag.bounceexchange.com/3441/i.js';
e.async = true;
d.getElementsByTagName("head")[0].appendChild(e);
}
}
}(document));
</script>
<script src="https://cdn.p-n.io/pushly-sdk.min.js?domain_key=TXpY3X8ls7A4Zbp78hzgCks4F8YHWBaGK9tn" async=""></script>
<script>
var PushlySDK = window.PushlySDK || [];
function pushly() { PushlySDK.push(arguments) }
pushly('load', {
domainKey: 'TXpY3X8ls7A4Zbp78hzgCks4F8YHWBaGK9tn',
sw: '/js/pushly-sdk-worker.js',
});
pushly('on_prompt_shown', function() {
if (window.gtag) {
gtag('event', 'Pushly_on_prompt_shown', {
'event_category': 'impressions',
'event_label': 'Pushly_on_prompt_shown'
});
}
});
pushly('on_permission_allowed', function() {
if (window.gtag) {
gtag('event', 'Pushly_on_permission_allowed', {
'event_category': 'clicks',
'event_label': 'Pushly_on_permission_allowed'
});
}
});
</script>
<style>
* .pogoPgWrap {
transition: all .01s ease;
}
@font-face{font-display:optional;font-family:outfit;font-weight:100 800;src:url(/fonts/Outfit.woff2) format("woff2")}
</style>
</head>
<body class="">
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MN78SWW" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<nav x-data="{navOpen: false}" class="top-0 z-30 py-3 w-full bg-white border-b-2 border-primary-400" data-ga-module="global_nav">
<div class="flex relative justify-between items-center px-4 pl-3 mx-auto max-w-8xl">
<button @click="navOpen = true; $nextTick(() => $refs.firstMenuItem.focus());" class="flex-shrink px-2" aria-label="Menu">
<svg class="inline-block w-7 h-7 fill-current"><use href="/images/icons/spritemap.svg#sprite-hamburger"></use></svg>
</button>
<a href="https://mashable.com" class="flex items-center mr-8 w-full xl:w-auto" aria-label="Home" data-ga-click="" data-ga-element="navigation_logo" data-ga-action="navigation_logo" data-ga-item="logo">
<div x-data="{animate: false, reverse: false}" x-init="setTimeout(() => animate = true, 1000)">
<svg x-ref="wordmark" id="mashable-wordmark-animated" class="inline-block -mb-3 w-40 h-11 fill-current hover:fill-secondary-100" :class="{ 'animate': animate, 'animate-reverse': reverse }" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 2200 650" shape-rendering="geometricPrecision" text-rendering="geometricPrecision"><style>.animate #euSMf1FbiNs11_to{animation:euSMf1FbiNs11_to__to 1s linear 1 normal forwards}.animate-reverse #euSMf1FbiNs11_to{animation:euSMf1FbiNs11_to__back 1s linear 1 normal forwards}@keyframes euSMf1FbiNs11_to__to{0%{transform:translate(2326.395841px,218.229656px)}45%{transform:translate(2326.395841px,218.229656px)}73%{transform:translate(662.384075px,215.434656px)}100%{transform:translate(662.384075px,215.434656px)}}@keyframes euSMf1FbiNs11_to__back{0%{transform:translate(662.384075px,215.434656px)}45%{transform:translate(662.384075px,215.434656px)}73%{transform:translate(2326.395841px,218.229656px)}100%{transform:translate(2326.395841px,218.229656px)}}.animate #euSMf1FbiNs15_to{animation:euSMf1FbiNs15_to__to 1s linear 1 normal forwards}.animate-reverse #euSMf1FbiNs15_to{animation:euSMf1FbiNs15_to__back 1s linear 1 normal forwards}@keyframes euSMf1FbiNs15_to__to{0%{transform:translate(144.277373px,1260.854733px)}41%{transform:translate(144.277373px,331.868153px)}100%{transform:translate(144.277373px,331.868153px)}}@keyframes euSMf1FbiNs15_to__back{0%{transform:translate(144.277373px,331.868153px)}41%{transform:translate(144.277373px,331.868153px)}100%{transform:translate(144.277373px,1260.854733px)}}.animate #euSMf1FbiNs19_to{animation:euSMf1FbiNs19_to__to 1s linear 1 normal forwards}.animate-reverse #euSMf1FbiNs19_to{animation:euSMf1FbiNs19_to__back 1s linear 1 normal forwards}@keyframes euSMf1FbiNs19_to__to{0%{transform:translate(144.277373px,1003.724046px)}60%{transform:translate(144.277373px,1003.724046px)}80%{transform:translate(145.277373px,766.938989px)}100%{transform:translate(145.277373px,766.938989px)}}@keyframes euSMf1FbiNs19_to__back{0%{transform:translate(145.277373px,766.938989px)}60%{transform:translate(145.277373px,766.938989px)}80%{transform:translate(144.277373px,1003.724046px)}100%{transform:translate(144.277373px,1003.724046px)}}.animate #euSMf1FbiNs22_to{animation:euSMf1FbiNs22_to__to 1s linear 1 normal forwards}.animate-reverse #euSMf1FbiNs22_to{animation:euSMf1FbiNs22_to__back 1s linear 1 normal forwards}@keyframes euSMf1FbiNs22_to__to{0%{transform:translate(5474.895347px,1202.280706px)}60%{transform:translate(5474.895347px,1202.280706px)}90%{transform:translate(13.364022px,1202.286993px)}100%{transform:translate(13.364022px,1202.286993px)}}@keyframes euSMf1FbiNs22_to__back{0%{transform:translate(13.364022px,1202.286993px)}60%{transform:translate(13.364022px,1202.286993px)}90%{transform:translate(5474.895347px,1202.280706px)}100%{transform:translate(5474.895347px,1202.280706px)}}</style><g id="euSMf1FbiNs2" transform="matrix(1 0 0 1 327.55203400000028 85.59466518500005)"><polygon id="euSMf1FbiNs3" points="221.679659,0.620000 221.679659,0.669994 221.589769,0.620000 143.495006,136.034612 65.410231,0.620000 65.320341,0.669994 65.320341,0.620000 0,0.620000 0,264.620000 65.320341,264.620000 65.320341,131.265154 119.594153,225.374460 119.594153,225.374460 129.252375,242.112558 157.747625,242.112558 170.312302,220.325034 221.679659,131.265154 221.679659,264.620000 287,264.620000 287,0.620000 221.679659,0.620000" fill="currentColor" stroke="none" stroke-width="1"></polygon><path id="euSMf1FbiNs4" d="M442.390000,897.214899C442.390000,839.553909,481.940898,800.570000,521.811158,800.570000C549.465848,800.570000,567.150479,814.747785,577.439900,829.245519L583.867046,805.729194L642.390000,805.729194L642.390000,987.410806L583.867046,987.410806L577.439900,963.894481C567.150479,978.392215,549.495788,992.570000,521.811158,992.570000C481.920938,992.570000,442.390000,953.586091,442.390000,897.214899ZM574.545689,896.574999C574.545689,876.578124,562.010758,861.780436,543.677425,861.780436C524.715349,861.780436,511.841098,877.887919,511.841098,896.574999C511.841098,915.901979,524.705369,931.359564,543.677425,931.359564C562.010758,931.359564,574.545689,916.541879,574.545689,896.574999Z" transform="matrix(1 0 0 1 -127.05000000000000 -727.75999999999999)" fill="currentColor" stroke="none" stroke-width="1"></path><path id="euSMf1FbiNs5" d="M812.223369,813.460670L812.223369,868.883557C799.336738,861.473171,775.822886,855.002834,755.848108,855.002834C744.261137,855.002834,738.132739,857.262952,738.132739,861.773187C738.132739,866.283422,744.581053,869.183573,762.296422,873.053774C793.538254,879.814126,825.110000,891.054712,825.110000,930.406761C825.110000,968.408741,795.117841,992.590000,740.712065,992.590000C712.719383,992.590000,689.825369,986.149665,674.359412,977.769228L674.359412,918.176124C690.785118,929.176697,710.759895,938.177166,737.492906,938.177166C751.019370,938.177166,758.747350,935.917048,758.747350,930.766780C758.747350,924.966478,749.089875,923.036377,727.185601,917.236075C699.192919,909.825689,672.110000,896.294985,672.110000,862.133205C672.110000,826.691359,701.102420,800.590000,752.628949,800.590000C774.213306,800.569999,797.077329,805.410251,812.223369,813.460670Z" transform="matrix(1 0 0 1 -127.05000000000000 -727.75999999999999)" fill="currentColor" stroke="none" stroke-width="1"></path><path id="euSMf1FbiNs6" d="M920.501202,819.668695L920.822692,819.668695C930.869277,809.056557,947.697307,800.379339,967.438845,800.379339C1005.957451,800.379339,1030.230000,823.837750,1030.230000,864.650596L1030.230000,986.760000L960.968845,986.760000L960.968845,882.643356C960.968845,867.862164,954.488798,861.439028,941.880334,861.439028C928.608796,861.439028,920.511248,870.116246,920.511248,881.685870L920.511248,986.760000L851.230000,986.760000L851.230000,727.760000L920.501202,727.760000Z" transform="matrix(1 0 0 1 -127.05000000000000 -727.75999999999999)" fill="currentColor" stroke="none" stroke-width="1"></path><path id="euSMf1FbiNs7" d="M1053.890000,897.214899C1053.890000,839.553909,1093.440898,800.570000,1133.311158,800.570000C1160.955868,800.570000,1178.650479,814.747785,1188.939900,829.245519L1195.367046,805.729194L1253.890000,805.729194L1253.890000,987.410806L1195.367046,987.410806L1188.939900,963.894481C1178.650479,978.392215,1160.995788,992.570000,1133.311158,992.570000C1093.440898,992.570000,1053.890000,953.586091,1053.890000,897.214899ZM1186.045689,896.574999C1186.045689,876.578124,1173.500778,861.780436,1155.177425,861.780436C1136.215349,861.780436,1123.341098,877.887919,1123.341098,896.574999C1123.341098,915.901979,1136.205369,931.359564,1155.177425,931.359564C1173.500778,931.359564,1186.045689,916.541879,1186.045689,896.574999Z" transform="matrix(1 0 0 1 -127.05000000000000 -727.75999999999999)" fill="currentColor" stroke="none" stroke-width="1"></path><path id="euSMf1FbiNs8" d="M1357.242375,827.972530C1367.531796,812.559819,1388.759341,800.347289,1411.264331,800.347289C1453.060739,800.347289,1488.430000,837.931972,1488.430000,896.053644C1488.430000,954.175317,1449.847166,991.760000,1408.050758,991.760000C1381.683493,991.760000,1363.679501,977.623374,1353.380100,963.167726L1346.952954,986.615783L1288.430000,986.615783L1288.430000,727.760000L1357.292275,727.760000ZM1356.603653,896.073583C1356.603653,916.311490,1369.138583,930.757168,1387.471916,930.757168C1406.114631,930.757168,1418.978902,915.663478,1418.978902,896.392605C1418.978902,877.450722,1406.114631,861.380029,1387.142575,861.380029C1369.138583,861.380029,1356.603653,876.154698,1356.603653,896.073583Z" transform="matrix(1 0 0 1 -127.05000000000000 -727.75999999999999)" fill="currentColor" stroke="none" stroke-width="1"></path><path id="euSMf1FbiNs9" d="M1514.920000,727.760000L1583.920000,727.760000L1583.920000,986.760000L1514.920000,986.760000Z" transform="matrix(1 0 0 1 -127.05000000000000 -727.75999999999999)" fill="currentColor" stroke="none" stroke-width="1"></path><path id="euSMf1FbiNs10" d="M1789.715993,914.612181L1676.080565,914.612181C1684.748180,932.009463,1704.653808,940.058205,1726.163442,940.058205C1745.740298,940.058205,1763.075529,933.619211,1779.125562,926.530319L1779.125562,979.042114C1760.505132,988.040708,1739.274456,992.570000,1716.529437,992.570000C1647.198476,992.570000,1609.320000,951.656393,1609.320000,896.894949C1609.320000,840.193809,1649.768872,800.570000,1703.368610,800.570000C1751.837517,800.570000,1791.320000,832.784966,1791.320000,893.675452C1791.329416,900.685633,1790.793115,907.685839,1789.715993,914.612181ZM1726.482251,876.618117C1726.163442,864.060080,1717.814635,853.101792,1703.049801,853.101792C1689.570164,853.101792,1678.332152,862.100386,1673.520131,876.618117Z" transform="matrix(1 0 0 1 -127.05000000000000 -727.75999999999999)" fill="currentColor" stroke="none" stroke-width="1"></path></g><g id="euSMf1FbiNs11_to" transform="translate(2326.395841,218.229656)"><polygon id="euSMf1FbiNs11" points="2994.404278,1003.400000 1373.292899,1003.400000 1167.283721,1164.601894 916.220000,1387.164859 2994.404278,1387.164859 2994.404278,1003.400000" transform="scale(0.922440,0.922440) translate(-1188.489990,-1195.614990)" fill="rgb(255,255,255)" stroke="none" stroke-width="1"></polygon></g><g id="euSMf1FbiNs12" transform="matrix(1 0 0 1 0 -4)" mask="url(#euSMf1FbiNs14)"><polygon id="euSMf1FbiNs13" points="-0.124694,383.594023 0.000007,787.553039 0.000007,842.876599 0.000007,1388.080235 457.526979,1383.558047 457.526979,628.534061 457.526979,573.210501 458.403224,0 -0.124694,383.594023" transform="matrix(0.44272113509609 0 0 0.43153125079610 43.00491365445770 18.64549964827933)" fill="currentColor" stroke="none" stroke-width="1"></polygon><mask id="euSMf1FbiNs14" mask-type="alpha"><g id="euSMf1FbiNs15_to" transform="translate(144.277373,1260.854733)"><polygon id="euSMf1FbiNs15" points="-0.124694,383.429007 -0.000073,787.214245 -0.000073,842.514006 -0.000073,1387.483103 452.947836,1385.590461 457.231375,628.263675 457.231375,572.963914 458.107053,0 -0.124694,383.429007" transform="scale(0.938390,0.938390) translate(-228.750000,-725.840023)" fill="currentColor" stroke="none" stroke-width="1"></polygon></g></mask></g><g id="euSMf1FbiNs16" transform="matrix(1 0 0 1 0 -4)" mask="url(#euSMf1FbiNs18)"><polygon id="euSMf1FbiNs17" points="-0.124694,383.160079 -0.000226,786.662112 -0.000226,841.923087 3.273209,1314.095486 489.720027,1314.095486 486.446592,1026.057228 456.669898,572.562051 457.544501,0 -0.124694,383.160079" transform="matrix(0.44299752680467 0 0 0.45278292652264 42.94168905111819 3.22018284927219)" fill="rgb(255,255,255)" stroke="none" stroke-width="1"></polygon><mask id="euSMf1FbiNs18" mask-type="alpha"><g id="euSMf1FbiNs19_to" transform="translate(144.277373,1003.724046)"><polygon id="euSMf1FbiNs19" points="-0.124694,383.022539 -0.000070,786.379730 -0.000070,841.620869 -0.000070,1386.012253 452.957811,1384.121616 457.241445,627.597662 457.241445,572.356523 458.117142,0 -0.124694,383.022539" transform="scale(0.442998,0.442998) translate(-228.750000,-725.840023)" fill="rgb(0,0,0)" stroke="none" stroke-width="1"></polygon></g></mask></g><g id="euSMf1FbiNs20" transform="matrix(0.44964075354686 0 0 0.44964075354686 -85.59085363638468 -7.93672154314413)"><g id="euSMf1FbiNs21" mask="url(#euSMf1FbiNs35)"><g id="euSMf1FbiNs22_to" transform="translate(5474.895347,1202.280706)"><g id="euSMf1FbiNs22" transform="translate(-1027.768089,-1215.630979)"><polygon id="euSMf1FbiNs23" points="632.859436,1003.400000 545.466598,1003.400000 87.980000,1388.151601 174.242154,1388.151601 632.859436,1003.400000" transform="matrix(1 0 0 1 1278.41180423626361 20.01597926568184)" fill="currentColor" stroke="none" stroke-width="1"></polygon><polygon id="euSMf1FbiNs24" points="632.859436,1003.400000 545.466598,1003.400000 87.980000,1388.151601 174.242154,1388.151601 632.859436,1003.400000" transform="matrix(1 0 0 1 279.34607797268734 20.01597926568184)" fill="currentColor" stroke="none" stroke-width="1"></polygon><polygon id="euSMf1FbiNs25" points="797.209436,1003.400000 709.824999,1003.400000 252.330000,1388.151601 338.593738,1388.151601 797.209436,1003.400000" transform="matrix(1 0 0 1 1278.41180423626383 20.01597926568184)" fill="currentColor" stroke="none" stroke-width="1"></polygon><polygon id="euSMf1FbiNs26" points="797.209436,1003.400000 709.824999,1003.400000 252.330000,1388.151601 338.593738,1388.151601 797.209436,1003.400000" transform="matrix(1 0 0 1 279.34607797268734 20.01597926568184)" fill="currentColor" stroke="none" stroke-width="1"></polygon><polygon id="euSMf1FbiNs27" points="963.879436,1003.400000 876.494999,1003.400000 419,1388.151601 505.263738,1388.151601 963.879436,1003.400000" transform="matrix(1 0 0 1 1278.41180423626383 20.01597926568184)" fill="currentColor" stroke="none" stroke-width="1"></polygon><polygon id="euSMf1FbiNs28" points="963.879436,1003.400000 876.494999,1003.400000 419,1388.151601 505.263738,1388.151601 963.879436,1003.400000" transform="matrix(1 0 0 1 279.34607797268734 20.01597926568184)" fill="currentColor" stroke="none" stroke-width="1"></polygon><polygon id="euSMf1FbiNs29" points="1128.219436,1003.400000 1040.834999,1003.400000 583.340000,1388.151601 669.603738,1388.151601 1128.219436,1003.400000" transform="matrix(1 0 0 1 1277.96797339258319 22.59894977233307)" fill="currentColor" stroke="none" stroke-width="1"></polygon><polygon id="euSMf1FbiNs30" points="1128.219436,1003.400000 1040.834999,1003.400000 583.340000,1388.151601 669.603738,1388.151601 1128.219436,1003.400000" transform="matrix(1 0 0 1 278.90224712900635 22.59894977233307)" fill="currentColor" stroke="none" stroke-width="1"></polygon><polygon id="euSMf1FbiNs31" points="1296.749436,1003.400000 1209.356598,1003.400000 751.870000,1388.151601 838.132154,1388.151601 1296.749436,1003.400000" transform="matrix(1 0 0 1 1278.41180423626565 20.01597926568184)" fill="currentColor" stroke="none" stroke-width="1"></polygon><polygon id="euSMf1FbiNs32" points="1296.749436,1003.400000 1209.356598,1003.400000 751.870000,1388.151601 838.132154,1388.151601 1296.749436,1003.400000" transform="matrix(1 0 0 1 279.34607797268723 20.01597926568184)" fill="currentColor" stroke="none" stroke-width="1"></polygon><polygon id="euSMf1FbiNs33" points="1461.099436,1003.400000 1373.714999,1003.400000 916.220000,1388.151601 1002.483738,1388.151601 1461.099436,1003.400000" transform="matrix(1 0 0 1 1278.41180423626429 20.01597926568184)" fill="currentColor" stroke="none" stroke-width="1"></polygon><polygon id="euSMf1FbiNs34" points="1461.099436,1003.400000 1373.714999,1003.400000 916.220000,1388.151601 1002.483738,1388.151601 1461.099436,1003.400000" transform="matrix(1 0 0 1 279.34607797268723 20.01597926568184)" fill="currentColor" stroke="none" stroke-width="1"></polygon></g></g><mask id="euSMf1FbiNs35" mask-type="alpha"><rect id="euSMf1FbiNs36" width="668.168909" height="172.855395" rx="0" ry="0" transform="matrix(6.63914743458407 0 0 3.36734374316499 306.31173456484885 871.81575675521890)" fill="rgb(210,219,237)" stroke="none" stroke-width="0"></rect></mask></g></g><polygon id="euSMf1FbiNs37" points="221.679659,0.620000 221.679659,0.669994 221.589769,0.620000 143.495006,136.034612 65.410231,0.620000 65.320341,0.669994 65.320341,0.620000 0,0.620000 0,264.620000 65.320341,264.620000 65.320341,131.265154 119.594153,225.374460 119.594153,225.374460 129.252375,242.112558 157.747625,242.112558 170.312302,220.325034 221.679659,131.265154 221.679659,264.620000 287,264.620000 287,0.620000 221.679659,0.620000" transform="matrix(1 0 0 1 327.55203400000005 85.78466519499989)" fill="currentColor" stroke="none" stroke-width="1"></polygon></svg>
</div>
</a>
<div class="flex hidden flex-grow items-center space-x-6 text-sm font-semibold tracking-wide xl:block" data-ga-element="navigation_link" data-ga-action="navigation_link" data-ga-item="title">
<a href="/series/worth-it" class="text-secondary-300 hover:text-primary-400" data-ga-click="" data-ga-label="$text">Worth It</a>
<a href="/shopping-hubs/gift-lab" class="text-secondary-300 hover:text-primary-400" data-ga-click="" data-ga-label="$text">Gift Lab</a>
<a href="https://mashable.com/tech" data-ga-click="" data-ga-label="$text">Tech</a>
<a href="https://mashable.com/science" data-ga-click="" data-ga-label="$text">Science</a>
<a href="https://mashable.com/life" data-ga-click="" data-ga-label="$text">Life</a>
<a href="https://mashable.com/category/social-good" data-ga-click="" data-ga-label="$text">Social Good</a>
<a href="https://mashable.com/entertainment" data-ga-click="" data-ga-label="$text">Entertainment</a>
<a href="https://mashable.com/deals" data-ga-click="" data-ga-label="$text">Deals</a>
<a href="https://mashable.com/shopping" data-ga-click="" data-ga-label="$text">Shopping</a>
<a href="https://mashable.com/travel" data-ga-click="" data-ga-label="$text">Travel</a>
</div>
<div x-data="window.navSearch()" x-init="init('prod_site_search_autocomplete')" @click="searchOpen = true" @click.outside="searchOpen = false" class="absolute right-0 py-3 mx-4 lg:py-2 lg:mx-4 lg:max-w-xs xl:max-w-sm lg:min-w-20" :class="{ 'w-64 mx-0 bg-white ': searchOpen, 'w-6 ': !searchOpen}">
<div class="relative cursor-pointer">
<input x-ref="searchInput" x-model="query" x-on:input="evt=>query=evt.target.value" x-on:keyup="onKeyUp" x-on:keydown="onKeyDown" :class="{ 'visible': searchOpen, 'invisible': !searchOpen }" aria-label="Search Mashable Content" placeholder="Search" class="invisible py-1 pr-2 pl-8 w-full text-sm lg:border focus:outline-none lg:focus:border-gray-400">
<svg x-cloak="" x-show="searchOpen" class="inline-block absolute top-0 left-0 mt-2 ml-2 w-4 h-4 fill-current"><use href="/images/icons/spritemap.svg#sprite-search-solid"></use></svg>
<div x-cloak="" x-show="!searchOpen" class="flex absolute top-1 flex-row justify-between py-1 w-full">
<div class="flex absolute top-0 flex-row justify-between py-0.5 w-full">
<div class="flex flex-row items-center w-full">
<button class="flex"><svg class="inline-block ml-2 w-4 h-4 fill-current"><use href="/images/icons/spritemap.svg#sprite-search-solid"></use></svg></button>
<span x-cloak="" x-show="!searchOpen" class="hidden ml-2 text-sm text-base font-semibold lg:block">Search</span>
</div>
</div>
<button x-cloak="" x-show="searchOpen" @click.stop="searchOpen = false" class="inline-block absolute right-2 text-sm font-semibold lg:hidden">Cancel</button>
</div>
<div x-cloak="" x-show="searchOpen" class="absolute z-40 w-full bg-white shadow">
<template x-for="[key, value] in Object.entries(results)" :key="key" hidden="">
<ul class="my-2" x-show="value && value.length > 0">
<li class="py-2 pr-5 pl-8 text-sm text-gray-600" x-text="key + ':'"></li>
<template x-for="(item, index) in value" :key="index" hidden="">
<li class="" :class="{'bg-gray-100': index + '-' + key === selectedIndex}" @mouseenter="selectedIndex = index + '-' + key">
<a class="block py-2 pr-5 pl-8 leading-tight no-underline break-words cursor-pointer transition-bg" :href="item.url" :name="item.title" x-html="item.title">
Search Result
</a>
</li>
</template>
<hr class="my-4 mr-5 ml-8 border border-gray-100 border-1">
</ul>
</template>
</div>
</div>
</div>
</div>
<div x-show="navOpen" x-trap="navOpen" x-cloak="" @click.outside="navOpen = false" x-transition:enter="transition duration-300 ease-out" x-transition:enter-start="opacity-0" x-transition:enter-end="opacity-1" x-transition:leave="transition duration-300 ease-out" x-transition:leave-end="opacity-0" class="flex fixed top-0 z-30 flex-col w-screen h-screen bg-white shadow-md" style="max-width:400px">
<div class="flex relative px-4 mt-4">
<button @click="navOpen = false" x-ref="firstMenuItem" class="absolute" aria-label="Close">
<svg class="inline-block w-6 h-6 fill-current"><use href="/images/icons/spritemap.svg#sprite-times-solid"></use></svg>
</button>
<div class="relative flex-shrink mx-auto text-center text-primary-400">
<svg class="inline-block w-6 h-6 fill-current"><use href="/images/icons/spritemap.svg#sprite-mashable-m"></use></svg>
<svg class="absolute top-0 left-0 -mt-1 -ml-5 w-12 h-12 fill-current"><use href="/images/icons/spritemap.svg#sprite-logomark"></use></svg>
</div>
</div>
<div class="flex overflow-auto overscroll-none flex-col flex-grow py-6 px-8 mt-6" data-ga-element="side_navigation_link" data-ga-action="side_navigation_link" data-ga-item="title">
<a href="/series/worth-it" data-ga-click="" data-ga-label="$text" class="mt-6 uppercase text-secondary-300 header-300 hover:text-primary-400">Worth It</a>
<a href="/shopping-hubs/gift-lab" data-ga-click="" data-ga-label="$text" class="mt-6 uppercase text-secondary-300 header-300 hover:text-primary-400">Gift Lab</a>
<div x-data="{drawerOpen: false}" class="mt-6">
<button @click="drawerOpen = !drawerOpen" class="uppercase cursor-pointer select-none header-300">
<span class="font-semibold">Tech</span>
<div class="inline-block relative">
<svg x-show="drawerOpen" class="inline-block mb-1 w-5 h-5 text-secondary-300"><use href="/images/icons/spritemap.svg#sprite-minus-solid"></use></svg>
<svg x-show="!drawerOpen" class="inline-block mb-1 w-5 h-5 text-secondary-300"><use href="/images/icons/spritemap.svg#sprite-plus-solid"></use></svg>
</div>
</button>
<div x-show="drawerOpen" class="text-base">
<a href="https://mashable.com/category/apps-and-software" class="block mt-4" data-ga-click="" data-ga-label="$text">Apps & Software</a>
<a href="https://mashable.com/category/artificial-intelligence" class="block mt-4" data-ga-click="" data-ga-label="$text">Artificial Intelligence</a>
<a href="https://mashable.com/category/cybersecurity" class="block mt-4" data-ga-click="" data-ga-label="$text">Cybersecurity</a>
<a href="https://mashable.com/category/cryptocurrency" class="block mt-4" data-ga-click="" data-ga-label="$text">Cryptocurrency</a>
<a href="https://mashable.com/category/mobile" class="block mt-4" data-ga-click="" data-ga-label="$text">Mobile</a>
<a href="https://mashable.com/category/smart-home" class="block mt-4" data-ga-click="" data-ga-label="$text">Smart Home</a>
<a href="https://mashable.com/category/social-media" class="block mt-4" data-ga-click="" data-ga-label="$text">Social Media</a>
<a href="https://mashable.com/category/tech-industry" class="block mt-4" data-ga-click="" data-ga-label="$text">Tech Industry</a>
<a href="https://mashable.com/category/transportation" class="block mt-4" data-ga-click="" data-ga-label="$text">Transportation</a>
<a href="https://mashable.com/tech" class="block mt-4 font-bold" data-ga-click="" data-ga-label="$text">All Tech</a>
</div>
</div>
<div x-data="{drawerOpen: false}" class="mt-6">
<button @click="drawerOpen = !drawerOpen" class="uppercase cursor-pointer select-none header-300">
<span class="font-semibold">Science</span>
<div class="inline-block relative">
<svg x-show="drawerOpen" class="inline-block mb-1 w-5 h-5 text-secondary-300"><use href="/images/icons/spritemap.svg#sprite-minus-solid"></use></svg>
<svg x-show="!drawerOpen" class="inline-block mb-1 w-5 h-5 text-secondary-300"><use href="/images/icons/spritemap.svg#sprite-plus-solid"></use></svg>
</div>
</button>
<div x-show="drawerOpen" class="text-base">
<a href="https://mashable.com/category/space" class="block mt-4" data-ga-click="" data-ga-label="$text">Space</a>
<a href="https://mashable.com/category/climate-change" class="block mt-4" data-ga-click="" data-ga-label="$text">Climate Change</a>
<a href="https://mashable.com/category/environment" class="block mt-4" data-ga-click="" data-ga-label="$text">Environment</a>
<a href="https://mashable.com/videos/category/science" class="block mt-4" data-ga-click="" data-ga-label="$text">Video</a>
<a href="https://mashable.com/science" class="block mt-4 font-bold" data-ga-click="" data-ga-label="$text">All Science</a>
</div>
</div>
<div x-data="{drawerOpen: false}" class="mt-6">
<button @click="drawerOpen = !drawerOpen" class="uppercase cursor-pointer select-none header-300">
<span class="font-semibold">Life</span>
<div class="inline-block relative">
<svg x-show="drawerOpen" class="inline-block mb-1 w-5 h-5 text-secondary-300"><use href="/images/icons/spritemap.svg#sprite-minus-solid"></use></svg>
<svg x-show="!drawerOpen" class="inline-block mb-1 w-5 h-5 text-secondary-300"><use href="/images/icons/spritemap.svg#sprite-plus-solid"></use></svg>
</div>
</button>
<div x-show="drawerOpen" class="text-base">
<a href="https://mashable.com/category/digital-culture" class="block mt-4" data-ga-click="" data-ga-label="$text">Digital Culture</a>
<a href="https://mashable.com/category/family-parenting" class="block mt-4" data-ga-click="" data-ga-label="$text">Family & Parenting</a>
<a href="https://mashable.com/category/health-wellness" class="block mt-4" data-ga-click="" data-ga-label="$text">Health & Wellness</a>
<a href="https://mashable.com/category/sex-dating-relationships" class="block mt-4" data-ga-click="" data-ga-label="$text">Sex, Dating & Relationships</a>
<a href="https://mashable.com/category/sleep" class="block mt-4" data-ga-click="" data-ga-label="$text">Sleep</a>
<a href="https://mashable.com/category/careers" class="block mt-4" data-ga-click="" data-ga-label="$text">Careers</a>
<a href="https://mashable.com/category/mental-health" class="block mt-4" data-ga-click="" data-ga-label="$text">Mental Health</a>
<a href="https://mashable.com/life" class="block mt-4 font-bold" data-ga-click="" data-ga-label="$text">All Life</a>
</div>
</div>
<div x-data="{drawerOpen: false}" class="mt-6">
<button @click="drawerOpen = !drawerOpen" class="uppercase cursor-pointer select-none header-300">
<span class="font-semibold">Social Good</span>
<div class="inline-block relative">
<svg x-show="drawerOpen" class="inline-block mb-1 w-5 h-5 text-secondary-300"><use href="/images/icons/spritemap.svg#sprite-minus-solid"></use></svg>
<svg x-show="!drawerOpen" class="inline-block mb-1 w-5 h-5 text-secondary-300"><use href="/images/icons/spritemap.svg#sprite-plus-solid"></use></svg>
</div>
</button>
<div x-show="drawerOpen" class="text-base">
<a href="https://mashable.com/category/activism" class="block mt-4" data-ga-click="" data-ga-label="$text">Activism</a>
<a href="https://mashable.com/category/gender" class="block mt-4" data-ga-click="" data-ga-label="$text">Gender</a>
<a href="https://mashable.com/category/lgbtq" class="block mt-4" data-ga-click="" data-ga-label="$text">LGBTQ</a>
<a href="https://mashable.com/category/racism" class="block mt-4" data-ga-click="" data-ga-label="$text">Racial Justice</a>
<a href="https://mashable.com/category/sustainability" class="block mt-4" data-ga-click="" data-ga-label="$text">Sustainability</a>
<a href="https://mashable.com/category/politics" class="block mt-4" data-ga-click="" data-ga-label="$text">Politics</a>
<a href="https://mashable.com/category/social-good" class="block mt-4 font-bold" data-ga-click="" data-ga-label="$text">All Social Good</a>
</div>
</div>
<div x-data="{drawerOpen: false}" class="mt-6">
<button @click="drawerOpen = !drawerOpen" class="uppercase cursor-pointer select-none header-300">
<span class="font-semibold">Entertainment</span>
<div class="inline-block relative">
<svg x-show="drawerOpen" class="inline-block mb-1 w-5 h-5 text-secondary-300"><use href="/images/icons/spritemap.svg#sprite-minus-solid"></use></svg>
<svg x-show="!drawerOpen" class="inline-block mb-1 w-5 h-5 text-secondary-300"><use href="/images/icons/spritemap.svg#sprite-plus-solid"></use></svg>
</div>
</button>
<div x-show="drawerOpen" class="text-base">
<a href="https://mashable.com/category/games" class="block mt-4" data-ga-click="" data-ga-label="$text">Games</a>
<a href="https://mashable.com/category/movies" class="block mt-4" data-ga-click="" data-ga-label="$text">Movies</a>
<a href="https://mashable.com/category/podcasts" class="block mt-4" data-ga-click="" data-ga-label="$text">Podcasts</a>
<a href="https://mashable.com/category/tv-shows" class="block mt-4" data-ga-click="" data-ga-label="$text">TV Shows</a>
<a href="https://mashable.com/videos/category/entertainment" class="block mt-4" data-ga-click="" data-ga-label="$text">Video</a>
<a href="https://mashable.com/reviews/category/entertainment" class="block mt-4" data-ga-click="" data-ga-label="$text">Reviews</a>
<a href="https://mashable.com/category/watch-guides" class="block mt-4" data-ga-click="" data-ga-label="$text">Watch Guides</a>
<a href="https://mashable.com/entertainment" class="block mt-4 font-bold" data-ga-click="" data-ga-label="$text">All Entertainment</a>
</div>
</div>
<div x-data="{drawerOpen: false}" class="mt-6">
<button @click="drawerOpen = !drawerOpen" class="uppercase cursor-pointer select-none header-300">
<span class="font-semibold">SHOP THE BEST</span>
<div class="inline-block relative">
<svg x-show="drawerOpen" class="inline-block mb-1 w-5 h-5 text-secondary-300"><use href="/images/icons/spritemap.svg#sprite-minus-solid"></use></svg>
<svg x-show="!drawerOpen" class="inline-block mb-1 w-5 h-5 text-secondary-300"><use href="/images/icons/spritemap.svg#sprite-plus-solid"></use></svg>
</div>
</button>
<div x-show="drawerOpen" class="text-base">
<a href="https://mashable.com/roundups/category/house-home" class="block mt-4" data-ga-click="" data-ga-label="$text">Home</a>
<a href="https://mashable.com/roundups/category/tech" class="block mt-4" data-ga-click="" data-ga-label="$text">Tech</a>
<a href="https://mashable.com/roundups/category/kitchen" class="block mt-4" data-ga-click="" data-ga-label="$text">Kitchen</a>
<a href="https://mashable.com/roundups/category/fitness" class="block mt-4" data-ga-click="" data-ga-label="$text">Fitness</a>
<a href="https://mashable.com/roundups/category/sex-toys" class="block mt-4" data-ga-click="" data-ga-label="$text">Sex Toys</a>
<a href="https://mashable.com/roundups/category/apps-and-software" class="block mt-4" data-ga-click="" data-ga-label="$text">Apps & Software</a>
<a href="https://mashable.com/roundups/category/sex-dating-relationships" class="block mt-4" data-ga-click="" data-ga-label="$text">Dating</a>
<a href="https://mashable.com/gifts" class="block mt-4" data-ga-click="" data-ga-label="$text">Gift Guides</a>
<a href="https://mashable.com/mashable-choice" class="block mt-4" data-ga-click="" data-ga-label="$text">Mashable Choice</a>
<a href="https://mashable.com/category/mashable-selects" class="block mt-4" data-ga-click="" data-ga-label="$text">Mashable Selects</a>
<a href="https://mashable.com/roundups/category/gaming" class="block mt-4" data-ga-click="" data-ga-label="$text">Gaming</a>
<a href="https://mashable.com/roundups" class="block mt-4 font-bold" data-ga-click="" data-ga-label="$text">All Best Products</a>
</div>
</div>
<div x-data="{drawerOpen: false}" class="mt-6">
<button @click="drawerOpen = !drawerOpen" class="uppercase cursor-pointer select-none header-300">
<span class="font-semibold">Travel</span>
<div class="inline-block relative">
<svg x-show="drawerOpen" class="inline-block mb-1 w-5 h-5 text-secondary-300"><use href="/images/icons/spritemap.svg#sprite-minus-solid"></use></svg>
<svg x-show="!drawerOpen" class="inline-block mb-1 w-5 h-5 text-secondary-300"><use href="/images/icons/spritemap.svg#sprite-plus-solid"></use></svg>
</div>
</button>
<div x-show="drawerOpen" class="text-base">
<a href="https://mashable.com/deals/category/travel" class="block mt-4" data-ga-click="" data-ga-label="$text">Deals</a>
<a href="https://mashable.com/roundups/category/travel" class="block mt-4" data-ga-click="" data-ga-label="$text">Best of</a>
<a href="https://mashable.com/travel" class="block mt-4 font-bold" data-ga-click="" data-ga-label="$text">All Travel</a>
</div>
</div>
<div x-data="{drawerOpen: false}" class="mt-6">
<button @click="drawerOpen = !drawerOpen" class="uppercase cursor-pointer select-none header-300">
<span class="font-semibold">Product Reviews</span>
<div class="inline-block relative">
<svg x-show="drawerOpen" class="inline-block mb-1 w-5 h-5 text-secondary-300"><use href="/images/icons/spritemap.svg#sprite-minus-solid"></use></svg>
<svg x-show="!drawerOpen" class="inline-block mb-1 w-5 h-5 text-secondary-300"><use href="/images/icons/spritemap.svg#sprite-plus-solid"></use></svg>
</div>
</button>
<div x-show="drawerOpen" class="text-base">
<a href="https://mashable.com/reviews/category/tech" class="block mt-4" data-ga-click="" data-ga-label="$text">Tech</a>
<a href="https://mashable.com/reviews/category/life" class="block mt-4" data-ga-click="" data-ga-label="$text">Life</a>
<a href="https://mashable.com/reviews/category/beauty" class="block mt-4" data-ga-click="" data-ga-label="$text">Beauty Tech</a>
<a href="https://mashable.com/reviews/category/kitchen" class="block mt-4" data-ga-click="" data-ga-label="$text">Kitchen</a>
<a href="https://mashable.com/reviews/category/family-parenting" class="block mt-4" data-ga-click="" data-ga-label="$text">Kids/Toys</a>
<a href="https://mashable.com/reviews/category/gaming" class="block mt-4" data-ga-click="" data-ga-label="$text">Gaming</a>
<a href="https://mashable.com/reviews/category/fitness" class="block mt-4" data-ga-click="" data-ga-label="$text">Fitness</a>
<a href="https://mashable.com/reviews/category/sex-toys" class="block mt-4" data-ga-click="" data-ga-label="$text">Sex Toys</a>
<a href="https://mashable.com/reviews/category/apps-software" class="block mt-4" data-ga-click="" data-ga-label="$text">Apps & Software</a>
<a href="https://mashable.com/review" class="block mt-4 font-bold" data-ga-click="" data-ga-label="$text">All Product Reviews</a>
</div>
</div>
<div x-data="{drawerOpen: false}" class="mt-6">
<button @click="drawerOpen = !drawerOpen" class="uppercase cursor-pointer select-none header-300">
<span class="font-semibold">DEALS</span>
<div class="inline-block relative">
<svg x-show="drawerOpen" class="inline-block mb-1 w-5 h-5 text-secondary-300"><use href="/images/icons/spritemap.svg#sprite-minus-solid"></use></svg>
<svg x-show="!drawerOpen" class="inline-block mb-1 w-5 h-5 text-secondary-300"><use href="/images/icons/spritemap.svg#sprite-plus-solid"></use></svg>
</div>
</button>
<div x-show="drawerOpen" class="text-base">
<a href="https://mashable.com/deals/category/house-home" class="block mt-4" data-ga-click="" data-ga-label="$text">Home</a>
<a href="https://mashable.com/deals/category/tech" class="block mt-4" data-ga-click="" data-ga-label="$text">Tech</a>
<a href="https://mashable.com/deals/category/tvs" class="block mt-4" data-ga-click="" data-ga-label="$text">TV</a>
<a href="https://mashable.com/deals/category/laptops" class="block mt-4" data-ga-click="" data-ga-label="$text">Laptop</a>
<a href="https://mashable.com/deals/category/vpn" class="block mt-4" data-ga-click="" data-ga-label="$text">VPN</a>
<a href="https://mashable.com/deals/category/vacuums" class="block mt-4" data-ga-click="" data-ga-label="$text">Vacuum</a>
<a href="https://mashable.com/deals/category/gaming" class="block mt-4" data-ga-click="" data-ga-label="$text">Gaming</a>
<a href="https://mashable.com/deals/category/streaming" class="block mt-4" data-ga-click="" data-ga-label="$text">Streaming</a>
<a href="https://mashable.com/deals/category/apple" class="block mt-4" data-ga-click="" data-ga-label="$text">Apple</a>
<a href="https://shop.mashable.com/" class="block mt-4" data-ga-click="" data-ga-label="$text" target="_blank" rel="noopener" title="(opens in a new window)">
Mashable Shop
<svg class="inline-block mb-1 ml-1 w-4 h-4 text-secondary-300"><use href="/images/icons/spritemap.svg#sprite-external-link"></use></svg>
</a>
<a href="https://mashable.com/deals" class="block mt-4 font-bold" data-ga-click="" data-ga-label="$text">All Deals</a>
</div>
</div>
<div class="mt-6">
<a href="https://mashable.com/newsletters" class="uppercase cursor-pointer select-none header-300" data-ga-click="" data-ga-label="$text"><span class="font-semibold">Newsletters</span></a>
</div>
<div x-data="{drawerOpen: false}" class="mt-6">
<button @click="drawerOpen = !drawerOpen" class="uppercase cursor-pointer select-none header-300">
<span class="font-semibold">VIDEOS</span>
<div class="inline-block relative">
<svg x-show="drawerOpen" class="inline-block mb-1 w-5 h-5 text-secondary-300"><use href="/images/icons/spritemap.svg#sprite-minus-solid"></use></svg>
<svg x-show="!drawerOpen" class="inline-block mb-1 w-5 h-5 text-secondary-300"><use href="/images/icons/spritemap.svg#sprite-plus-solid"></use></svg>
</div>
</button>
<div x-show="drawerOpen" class="text-base">
<a href="https://mashable.com/shows" class="block mt-4" data-ga-click="" data-ga-label="$text">Mashable Shows</a>
<a href="https://mashable.com/videos" class="block mt-4 font-bold" data-ga-click="" data-ga-label="$text">All Videos</a>
</div>
</div>
</div>
</div>
</nav>
<header class="max-w-7xl px-4 mt-8 text-primary-400 font-sans mx-auto">
<div class="flex flex-wrap subtitle-2 ">
<div class="max-w-3xl">
<section style="">
<div class="text-gray-700 subtitle-2 text-uppercase" style="">
<a href="https://mashable.com" style="" aria-label="Navigate to the Home page">Home</a>
<span class="ml-1">></span>
<a class="ml-1 " href="/tech" style="" aria-label="Navigate to the Tech category">Tech</a>
</div>
</section>
</div>
</div>
<h1 class="mt-4 header-100 leading-tight max-w-5xl ">No, iPhones aren't all 'the same.' All the new features from iPhone 11 to iPhone 15.</h1>
<div class="mt-2 leading-tight md:leading-normal text-xl max-w-4xl ">The new Action Button is elite.</div>
<div class="w-full subtitle-2 mt-8 text-left md:flex md:flex-wrap md:items-baseline md:space-x-8 ">
<div>
By
<a href="/author/kim-gedeon" class="underline-link">Kimberly Gedeon</a> on <time datetime="Fri, 22 Dec 2023 11:00:00 +0000">December 22, 2023</time>
</div>
<div class="flex flex-initial content-start mt-4 text-base md:mt-0">
<a href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fmashable.com%2Farticle%2Fiphone-11-to-iphone-15" data-ga-element="social-share-link" data-ga-action="social_share_link" data-ga-position="1" data-ga-label="facebook" data-ga-click="" aria-label="Facebook Share" class="pr-3 hover:text-primary-400" target="_blank" rel="noopener" title="(opens in a new window)">
<svg class="inline-block w-5 h-4 fill-current"><use href="/images/icons/spritemap.svg#sprite-facebook-f-brands"></use></svg>
<span class="sr-only">Share on Facebook</span>
</a>
<a href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fmashable.com%2Farticle%2Fiphone-11-to-iphone-15&text=No%2C+iPhones+aren%27t+all+%27the+same.%27+All+the+new+features+from+iPhone+11+to+iPhone+15." data-ga-element="social-share-link" data-ga-action="social_share_link" data-ga-position="2" data-ga-label="twitter" data-ga-click="" aria-label="Twitter Share" class="px-3 hover:text-primary-400" target="_blank" rel="noopener" title="(opens in a new window)">
<svg class="inline-block w-5 h-4 fill-current"><use href="/images/icons/spritemap.svg#sprite-twitter-brands"></use></svg>
<span class="sr-only">Share on Twitter</span>
</a>
<a href="https://share.flipboard.com/bookmarklet/popout?v=2&url=https%3A%2F%2Fmashable.com%2Farticle%2Fiphone-11-to-iphone-15&title=No%2C+iPhones+aren%27t+all+%27the+same.%27+All+the+new+features+from+iPhone+11+to+iPhone+15." data-ga-element="social-share-link" data-ga-action="social_share_link" data-ga-position="3" data-ga-label="flipboard" data-ga-click="" aria-label="Flipboard Share" class="px-3 hover:text-primary-400" target="_blank" rel="noopener" title="(opens in a new window)">
<svg class="inline-block w-5 h-4 fill-current"><use href="/images/icons/spritemap.svg#sprite-flipboard-brands"></use></svg>
<span class="sr-only">Share on Flipboard</span>
</a>
</div>
</div>
<div class="">
<div class="mt-4 italic sans-serif subtitle-2 gray-600">
All products featured here are independently selected by our editors and writers. If you buy something through links on our site, Mashable may earn an affiliate commission.
</div>
</div>
</header>
<main class="justify-between items-stretch px-4 mx-auto lg:flex max-w-8xl">
<section class="flex-grow 2xl:pr-4" data-ga-module="content_body">
<div class="mx-auto -mx-4 max-w-5xl lg:px-8 lg:mx-auto">
<div class="max-w-7xl px-4 mt-8 text-primary-400 font-sans mx-auto mt-10">
<img class="w-full border border-gray-100" src="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/hero-image.fill.size_1248x702.v1703234185.jpg" alt="iPhone new features" width="1248" height="702" srcset="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/hero-image.fill.size_400x225.v1703234185.jpg 400w, https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/hero-image.fill.size_800x450.v1703234185.jpg 800w, https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/hero-image.fill.size_1248x702.v1703234185.jpg 1600w" sizes="(max-width: 1280px) 100vw, 1280px">
<div class="mt-2 leading-none text-left">
<span class="font-sans normal-case subtitle-2 text-gray-1000">Don't be confused. Here are all the new features, from the iPhone 11 to iPhone 15</span>
<span class="font-sans text-gray-600 subtitle-2">Credit: Mashable/Apple/Canva</span>
</div>
</div>
<div class="max-w-7xl px-4 mx-auto">
<hr class="border-top border-gray-100 mt-12">
</div>
</div>
<article id="article" data-autopogo="" class="mt-8 font-serif editor-content">
<p>"How the hell does the iPhone differ from generation to generation?" <a href="https://twitter.com/jiggyjayy2/status/1736103528244904275?s=46&t=SkHVUkpqKaf2yB_Xc80T1g" target="_blank" title="(opens in a new window)">some ask</a>. "All the iPhones in recent years are all the same!" others exclaim. </p><p>It's true that most of the iPhone upgrades have been incremental, but in Apple's defense, why overhaul something that's already damn good? Innovation is exciting, but it also comes with risks. Sometimes, it's best to play it safe.</p><p>That being said, to prove that no iPhone is the same, here are the changes Apple has implemented for each line, from the iPhone 11 to the iPhone 15.</p><div class="mx-auto mt-8 w-full max-w-3xl font-sans text-lg leading-normal md:text-xl md:leading-7">
<span class="font-bold text-primary-400">SEE ALSO:</span>
<a href="/article/iphone-15-vs-iphone-15-pro" class="text-secondary-300">
iPhone 15 vs. iPhone 15 Pro: What are the differences?
<svg class="inline-block ml-1 w-4 h-4 font-normal fill-current"><use href="/images/icons/spritemap.svg#sprite-arrow-right-thin"></use></svg>
</a>
</div>
<h2><strong>iPhone 11</strong></h2><p>The <a href="https://mashable.com/feature/apple-iphone-11-review" target="_self">iPhone 11</a>, with a starting price of $699, shoved the iPhone XR out of the way with new cameras, improved audio, and a better display. </p><div class="eloquent-imagery-image">
<div class="flex justify-center">
<img class="border border-gray-100" src="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-1.fill.size_2000x1125.v1703219725.png" alt="iPhone 11" width="2000" height="1125" loading="lazy" srcset="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-1.fill.size_800x450.v1703219725.png 800w, https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-1.fill.size_1400x788.v1703219725.png 1400w, https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-1.fill.size_2000x1125.v1703219725.png 2000w" sizes="(max-width: 1408px) 100vw, 1408px">
</div>
<div class="mt-2 subtitle-2 font-sans ">
<span class="normal-case text-gray-1000">iPhone 11</span>
<span class="text-gray-600 credit">Credit: Apple</span>
</div>
</div>
<p>The 2019-launched smartphone shot 4K video at 60 frames per second, up from 1080p at 60 frames per second. Let's dive into all the other goodies Apple packed into the iPhone 11.</p><h3>Camera features</h3><ul><li><p>Night Mode is introduced</p></li><li><p>New slow-mo video for the selfie camera </p></li><li><p>Tap-to-hold as a shortcut for video recording (in Photo mode)</p></li><li><p>Upgraded wide camera with faster autofocus, better low-light performance</p></li><li><p>Upgraded ultra-wide camera with a wider field of view (120 degrees)</p></li><li><p>"Semantic rendering" - a process that intelligently detects subjects before readjusting lighting</p></li><li><p>"Stereoscopic depth" in Portrait Mode for better depth-of-field</p></li><li><p>"High-key mono" effect added to Portrait Mode</p></li><li><p>Updated telephoto for better light-gathering <strong>(Pro and Pro Max only)</strong></p></li><li><p>New "Deep Fusion" computational photography feature that decreases noise and improves detail <strong>(Pro and Pro Max only)</strong></p></li></ul><div class="eloquent-imagery-image">
<div class="flex justify-center">
<img class="border border-gray-100" src="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-2.fill.size_2000x1125.v1703225616.png" alt="iPhone 11 Pro" width="2000" height="1125" loading="lazy" srcset="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-2.fill.size_800x450.v1703225616.png 800w, https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-2.fill.size_1400x788.v1703225616.png 1400w, https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-2.fill.size_2000x1125.v1703225616.png 2000w" sizes="(max-width: 1408px) 100vw, 1408px">
</div>
<div class="mt-2 subtitle-2 font-sans ">
<span class="normal-case text-gray-1000">iPhone 11 Pro</span>
<span class="text-gray-600 credit">Credit: Apple</span>
</div>
</div>
<h3>Display</h3><ul><li><p>New Super Retina XDR display for improved contrast and brightness. <strong>(Pro and Pro Max only) </strong></p></li></ul><h3>Audio</h3><ul><li><p>Spatial audio - Dynamic speakers that simulate surround-sound, thanks to a new sound virtualizer and Dolby Atmos support</p></li></ul><h2><strong>iPhone 12</strong></h2><p>Despite chaos descending upon the world with the pandemic, Apple launched the new <a href="https://mashable.com/review/iphone-12-and-iphone-12-pro-review" target="_self">iPhone 12</a> in 2020, albeit later than its typical September launch.</p><div class="eloquent-imagery-image">
<div class="flex justify-center">
<img class="border border-gray-100" src="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-6.fill.size_2000x1334.v1703227602.jpg" alt="iPhone 12" width="2000" height="1334" loading="lazy" srcset="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-6.fill.size_800x534.v1703227602.jpg 800w, https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-6.fill.size_1400x934.v1703227602.jpg 1400w, https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-6.fill.size_2000x1334.v1703227602.jpg 2000w" sizes="(max-width: 1408px) 100vw, 1408px">
</div>
<div class="mt-2 subtitle-2 font-sans ">
<span class="normal-case text-gray-1000">Zlata Ivleva / mashable</span>
<span class="text-gray-600 credit">Credit: Apple</span>
</div>
</div>
<p>Announced in October, the iPhone 12 line was the first to introduce the new short-lived "mini" line. The iPhone 11's successor also brought 5G support. However, at the time, many critics shrugged at this because 5G wasn't widely available. Let's take a look at the series' new features.</p><h3>Camera</h3><ul><li><p>Updated wide camera with improved low-light performance</p></li><li><p>Night Mode now featured on <em>all </em>cameras (instead of just the wide shooter)</p></li><li><p>New "Night mode time-lapse" feature</p></li><li><p>Deep Fusion now on all four cameras, including wide, ultrawide, selfie, and telephoto shooters</p></li><li><p>Longer telephoto lens <strong>(Pro Max only)</strong></p></li><li><p>Updated wide lens with improved optical image stabilization, also known as "Sensor Shift," and better low-light performance <strong>(Pro Max only)</strong></p></li><li><p>Apple ProRAW, an option to access minimally processed photos<strong> (Pro and Pro Max only)</strong></p></li><li><p>HDR video recording, allowing you to capture more vivid videos <strong>(Pro and Pro Max only)</strong></p></li><li><p>New LiDAR scanner, unlocking new depth perception capabilities and AR features<strong> (Pro and Pro Max only)</strong></p></li></ul><h3>Display</h3><ul><li><p>Higher-res Super Retina XDR display</p></li><li><p>Increased display durability with Ceramic Shield</p></li><li><p>Larger display <strong>(Pro and Pro Max only)</strong></p></li></ul><h3>Connectivity</h3><ul><li><p>MagSafe charging, a new magnetic way of juicing up your iPhone </p></li><li><p>5G support </p></li></ul><h2><strong>iPhone 13</strong></h2><p>The <a href="https://mashable.com/review/iphone-13-review" target="_self">iPhone 13</a> reportedly introduced 20% smaller notch, but in my personal opinion, I didn't like the change. </p><div class="eloquent-imagery-image">
<div class="flex justify-center">
<img class="border border-gray-100" src="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-5.fill.size_2000x1125.v1703227602.jpg" alt="Stan Schroeder" width="2000" height="1125" loading="lazy" srcset="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-5.fill.size_800x450.v1703227602.jpg 800w, https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-5.fill.size_1400x788.v1703227602.jpg 1400w, https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-5.fill.size_2000x1125.v1703227602.jpg 2000w" sizes="(max-width: 1408px) 100vw, 1408px">
</div>
<div class="mt-2 subtitle-2 font-sans ">
<span class="normal-case text-gray-1000">iPhone 13</span>
<span class="text-gray-600 credit">Credit: Stan Schroeder / Mashable</span>
</div>
</div>
<p>Sure, it was less wide, but it dipped even further into the display. On the plus side, this family of phones debuted a bigger battery, which means runtime on a single charge should have improved over the iPhone 12. But what else did the iPhone 13 bring to the table? Let's take a look.</p><h3>Camera</h3><ul><li><p>Cinematic Mode, a rack focus feature that changes the depth effect of your videos with bokeh</p></li><li><p>Updated wide camera with brighter results in photos, videos</p></li><li><p>"Sensor Shift" now available for entry-level phones <strong>(mini and standard iPhone)</strong></p></li><li><p>Better Night Mode</p></li><li><p>Telephoto now offers up to 3x optical zoom <strong>(Pro and Pro Max only)</strong></p></li><li><p>New autofocus, better low-light performance in ultrawide camera <strong>(Pro and Pro Max only)</strong></p></li><li><p>Better light-gathering for wide camera <strong>(Pro and Pro Max only)</strong></p></li><li><p>Photographic Styles <strong>(Pro and Pro Max only)</strong></p></li><li><p>ProRes video, an Apple video codec that preserves detail in HDR imagery</p></li></ul><p></p><div class="eloquent-imagery-image">
<div class="flex justify-center">
<img class="border border-gray-100" src="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-4.fill.size_2000x1125.v1703227602.png" alt="Cinematic Mode in action" width="2000" height="1125" loading="lazy" srcset="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-4.fill.size_800x450.v1703227602.png 800w, https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-4.fill.size_1400x788.v1703227602.png 1400w, https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-4.fill.size_2000x1125.v1703227602.png 2000w" sizes="(max-width: 1408px) 100vw, 1408px">
</div>
<div class="mt-2 subtitle-2 font-sans ">
<span class="normal-case text-gray-1000">Cinematic Mode in action</span>
<span class="text-gray-600 credit">Credit: Apple</span>
</div>
</div>
<h3>Display</h3><ul><li><p>Brighter display</p></li><li><p>ProMotion, a variable refresh-rate feature from 10Hz to 120Hz <strong>(Pro and Pro Max only)</strong></p></li></ul><h2><strong>iPhone 14</strong></h2><p>So long, mini! Apple replaced the mini, which entered the iPhone family alongside the 12 line, with the new iPhone 14 Plus. Another feature Apple killed off is the physical SIM card.</p><div class="eloquent-imagery-image">
<div class="flex justify-center">
<img class="border border-gray-100" src="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-7.fill.size_2000x1250.v1703234185.jpg" alt="iPhone 14 and iPhone 14 Pro Max" width="2000" height="1250" loading="lazy" srcset="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-7.fill.size_800x500.v1703234185.jpg 800w, https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-7.fill.size_1400x875.v1703234185.jpg 1400w, https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-7.fill.size_2000x1250.v1703234185.jpg 2000w" sizes="(max-width: 1408px) 100vw, 1408px">
</div>
<div class="mt-2 subtitle-2 font-sans ">
<span class="normal-case text-gray-1000">iPhone 14 and iPhone 14 Pro Max</span>
<span class="text-gray-600 credit">Credit: Apple</span>
</div>
</div>
<p>Check out the other surprises the <a href="https://mashable.com/review/apple-iphone-14-pro-review" target="_self">iPhone 14</a> delivered in 2022.</p><h3>Camera</h3><ul><li><p>Updated wide camera with a larger sensor, better low-light performance <strong>(standard and Plus only)</strong></p></li><li><p>Updated ultrawide camera for improvement in low-light performance</p></li><li><p>New 48MP wide camera, up from 12MP<strong> (Pro and Pro Max only)</strong></p></li><li><p>Selfie camera also gets low-light improvement; plus, it has autofocus for the first time</p></li><li><p>New "Photonic Engine," an improved version of Deep Fusion</p></li><li><p>New Action Mode, allowing users to capture moments while on the move</p></li></ul><div class="eloquent-imagery-image">
<div class="flex justify-center">
<img class="border border-gray-100" src="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-9.fill.size_2000x1125.v1703234185.png" alt="iPhone 14" width="2000" height="1125" loading="lazy" srcset="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-9.fill.size_800x450.v1703234185.png 800w, https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-9.fill.size_1400x788.v1703234185.png 1400w, https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-9.fill.size_2000x1125.v1703234185.png 2000w" sizes="(max-width: 1408px) 100vw, 1408px">
</div>
<div class="mt-2 subtitle-2 font-sans ">
<span class="normal-case text-gray-1000"></span>
<span class="text-gray-600 credit">Credit: Apple</span>
</div>
</div>
<h3>Display</h3><ul><li><p>Brighter display <strong>(Pro and Pro Max only)</strong></p></li><li><p>Always-on display <strong>(Pro and Pro Max only)</strong></p></li></ul><h3>Design</h3><ul><li><p>iPhone 14 Plus replaces the would-be iPhone 14 mini, matching the size of the iPhone 14 Pro Max, but offering fewer features</p></li><li><p>Dynamic Island - a feature that animates your interactions with your iPhone — and makes better use of the controversial notch <strong>(Pro and Pro Max only)</strong></p></li></ul><div class="eloquent-imagery-image">
<div class="flex justify-center">
<img class="border border-gray-100" src="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-8.fill.size_2000x1125.v1703234185.png" alt="Dynamic Island" width="2000" height="1125" loading="lazy" srcset="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-8.fill.size_800x450.v1703234185.png 800w, https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-8.fill.size_1400x788.v1703234185.png 1400w, https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-8.fill.size_2000x1125.v1703234185.png 2000w" sizes="(max-width: 1408px) 100vw, 1408px">
</div>
<div class="mt-2 subtitle-2 font-sans ">
<span class="normal-case text-gray-1000"></span>
<span class="text-gray-600 credit">Credit: Apple</span>
</div>
</div>
<h3>Connectivity</h3><ul><li><p>eSIM replaces the physical SIM card</p></li><li><p>Emergency SOS via satellite, allows users to seek help in poor-coverage areas</p></li></ul><h3>Safety and security</h3><ul><li><p>Crash detection, thanks to a new gyroscope and accelerometer. This notifies emergency personnel if users are in a crash.</p></li></ul><h2><strong>iPhone 15</strong></h2><p>Cue Sia because one of the biggest draws of the <a href="https://mashable.com/review/apple-iphone-15-plus-review" target="_self">iPhone 15</a> is, at the top of my lungs, <em>titanium! </em>Oh, and let's not forget the USB-C port.</p><div class="eloquent-imagery-image">
<div class="flex justify-center">
<img class="border border-gray-100" src="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-10.fill.size_2000x1125.v1703234185.jpg" alt="iPhone 15" width="2000" height="1125" loading="lazy" srcset="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-10.fill.size_800x450.v1703234185.jpg 800w, https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-10.fill.size_1400x788.v1703234185.jpg 1400w, https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-10.fill.size_2000x1125.v1703234185.jpg 2000w" sizes="(max-width: 1408px) 100vw, 1408px">
</div>
<div class="mt-2 subtitle-2 font-sans ">
<span class="normal-case text-gray-1000"></span>
<span class="text-gray-600 credit">Credit: Stan Schroeder/Mashable</span>
</div>
</div>
<p>Let's check out the other features Apple packed inside the iPhone 15.</p><h3>Camera</h3><ul><li><p>48MP wide camera from iPhone 14 line now featured across all phones, not just Pro models</p></li><li><p>48MP wide camera with a wider sensor, lens-flare reduction, more focal length, and better low-light performance <strong>(Pro and Pro Max only)</strong></p></li><li><p>Spatial video recording for <a href="https://mashable.com/article/apple-vision-pro-impressions" target="_self">Apple Vision Pro</a> <strong>(Pro and Pro Max only)</strong></p></li><li><p>New 5x optical zoom <strong>(Pro Max only)</strong></p></li><li><p>New ProRes 4K at 60 frames per second <strong>(Pro and Pro Max only)</strong></p></li></ul><h3>Design</h3><ul><li><p>New USB-C port</p></li><li><p>Dynamic Island featured across all phones, not just the Pro models</p></li><li><p>New "Grade 5" Titanium enclosure <strong>(Pro and Pro Max only)</strong></p></li><li><p>Thinner bezels <strong>(Pro and Pro Max only)</strong></p></li><li><p>New customizable Action Button <strong>(Pro and Pro Max only)</strong></p></li></ul><h3>Connectivity</h3><ul><li><p>Roadside Assistance via satellite, a service that helps users who face sticky situations while they're on the road</p></li></ul><h3>Gaming</h3><ul><li><p>Games like <em>Resident Evil Village and Assassin's Creed Mirage </em>can run natively on iPhone 15 Pro models, thanks to the upgraded graphics</p></li></ul><div class="flex flex-col mx-auto mt-8 mb-16 max-w-3xl font-sans md:flex-row">
<div class="mx-auto w-64 md:mx-0 md:w-1/3">
<a class="block group" href="https://zdcs.link/ZowPK?pageview_type=Standard&template=article&module=deal-card&element=offer&item=image&element_label=image&object_type=article&object_uuid=0438vUKMXKmgJLDe4ztihZK&short_url=ZowPK&u=https%3A%2F%2Fmashable.com%2Farticle%2Fiphone-11-to-iphone-15" rel="nofollow sponsored" data-ga-action="product_image" data-ga-label="image" data-ga-item="image" data-ga-element="offer" data-ga-module="deal-card" data-ga-click="" target="_blank" title="(opens in a new window)">
<img class="w-full" src="https://helios-i.mashable.com/imagery/articles/0438vUKMXKmgJLDe4ztihZK/images-11.fill.size_256x144.v1703234186.jpg" alt="iPhone 15" width="256" height="144" loading="lazy">
<div class="block relative mx-14 group-hover:visible tooltip">
<span class="absolute invisible p-1 mt-2 text-xs text-center text-white group-hover:visible tooltiptext bg-gray-600/0 group-hover:bg-gray-600/100">
Opens in a new window
</span>
</div>
</a>
<div class="mt-2 leading-none text-left">
<span class="pr-5 mt-1 text-xs text-gray-600 subtitle-2">Credit: Mashable</span>
</div>
</div>
<div class="pl-0 mt-3 w-full md:pl-8 md:mt-0 md:w-2/3">
<a href="https://zdcs.link/ZowPK?pageview_type=Standard&template=article&module=deal-card&element=offer&item=title&element_label=iPhone%2015&object_type=article&object_uuid=0438vUKMXKmgJLDe4ztihZK&short_url=ZowPK&u=https%3A%2F%2Fmashable.com%2Farticle%2Fiphone-11-to-iphone-15" rel="nofollow sponsored" class="block mb-5 text-xl font-bold leading-8 text-center md:text-2xl md:text-left hover:underline text-secondary-300" data-ga-action="offer-title" data-ga-item="title" data-ga-element="offer" data-ga-module="deal-card" data-ga-label="iPhone 15" data-ga-click="" title="(opens in a new window)" target="_blank">
iPhone 15
</a>
<div class="font-sans text-base font-bold leading-6 text-center md:text-lg md:text-left text-coolgray-900">$799</div>
<a class="font-bold leading-6 text-center hover:underline" href="https://zdcs.link/ZowPK?pageview_type=Standard&template=article&module=deal-card&element=offer&item=buy-button&element_label=Get%20Deal&object_type=article&object_uuid=0438vUKMXKmgJLDe4ztihZK&short_url=ZowPK&u=https%3A%2F%2Fmashable.com%2Farticle%2Fiphone-11-to-iphone-15" rel="nofollow sponsored" target="_blank" data-ga-action="buy-link" data-ga-item="buy-button" data-ga-label="$text" data-ga-element="offer" data-ga-module="deal-card" data-ga-click="" title="(opens in a new window)">
<button class="inline-block px-5 mt-3 w-full font-sans text-base font-bold tracking-wide md:w-auto md:text-lg btn btn-secondary">Get Deal</button>
</a>
</div>
</div>
</article>
<section class="mx-auto mt-12 max-w-3xl border-t border-gray-200 border-solid">
<div class="py-8 w-full">
<div class="flex flex-col items-center pb-8 border-b border-gray-200 md:flex-row md:space-x-8">
<div class="flex flex-col justify-center items-center space-y-4 text-center md:flex-row md:justify-start md:space-y-0 md:space-x-6 md:text-left">
<img class="w-24 h-24 rounded-full border border-gray-200" src="https://helios-i.mashable.com/imagery/defaults/fallback-thumbnail.fill.size_100x100.1.png" alt="Mashable Image" width="100" height="100">
<div class="flex flex-col space-y-2">
<div class="w-full font-bold header-200">Kimberly Gedeon</div>
<div class="w-full text-xl font-bold">East Coast Tech Editor</div>
</div>
</div>
</div>
<div class="mx-0 max-w-3xl font-serif editor-content">
<p>Kimberly Gedeon is a tech explorer who enjoys doing deep dives into the most popular gadgets, from the latest iPhones to the most immersive VR headsets. She's drawn to strange, avant-garde, bizarre tech, whether it's a 3D laptop, a gaming rig that can transform into a briefcase, or smart glasses that can capture video. Her journalism career kicked off about a decade ago at MadameNoire where she covered tech and business before landing as a tech editor at Laptop Mag in 2020. </p>
</div>
</div>
</section>
</section>
<aside style="width:300px;" class="hidden flex-none 2xl:block" data-ga-module="content_rail">
<div class="sticky top-0 pt-2">
<div id="stickyVideoContainer">
</div>
<div data-pogo="sidebar"></div>
</div>
</aside>
</main>
<div class="px-4 mx-auto w-full 2xl:px-0 full-width">
<div data-pogo="nativespotlight"></div>
</div>
<div class="justify-between items-stretch px-4 mx-auto lg:flex max-w-8xl">
<section class="flex-grow 2xl:pr-4" data-ga-module="content_body">
<section class="mx-auto max-w-3xl">
<section class="mx-auto max-w-8xl">
<hr class="my-8 mx-auto border border-gray-100 md:my-12">
<div class="mt-12 font-bold header-200 text-primary-400 md:!leading-6">Recommended For You</div>
<div class="justify-center mt-8 w-full" data-module="content-list" data-ga-module="bibblio-recirc" data-ga-element="content-stripe" data-ga-action="content-stripe">
<div class="w-full" data-ga-position="1" id="firstRecommendation">
<div class="flex flex-row mx-auto mt-4 max-w-4xl font-sans md:flex-nowrap md:justify-around md:mx-0 md:mt-8">
<div class="flex flex-col flex-wrap mr-4 w-3/4 text-left md:mt-0 xl:relative items-around">
<a class="recs block text-primary-400 font-semibold leading-6 text-lg header-500 md:text-xl" data-ga-click="" data-ga-item="title" data-ga-label="$text" href="/review/xiaomi-13t-pro" data-bibblio-link="https://api.bibblio.org/v1/activities/5dcced3f-67f1-427b-8e2a-a42c2f2ba86a" data-bibblio-payload="{"type":"Clicked","object":[["contentItemId","035d5b56-6e6a-497f-894b-d864d9c48acc"]],"context":[["sourceHref","https:\/\/api.bibblio.org\/v1\/content-items\/a03a0b66-3083-4a89-a6e3-748f216118ce"],["sourceContentItemId","a03a0b66-3083-4a89-a6e3-748f216118ce"],["recommendations.contentItemId","035d5b56-6e6a-497f-894b-d864d9c48acc"],["recommendations.contentItemId","e6503400-e9e3-43ba-9a72-107d7ef9957d"],["recommendations.contentItemId","7a627db3-07f8-43a2-be58-eba41d67e979"],["recommendations.contentItemId","5fa8dd5f-e790-44c4-a5be-68c1667f6023"],["recommendations.contentItemId","95bd4dd5-89db-4a5e-9012-7b12ca7666f2"],["recommendations.contentItemId","22c4cf6d-4a45-4209-b7b0-4911ccb0877c"],["recommendations.contentItemId","4a648131-8005-4895-bbae-30a50efe974b"],["recommendations.contentItemId","701562de-864e-4d68-92b5-a61aafc83e98"],["recommendations.contentItemId","e8983554-72a6-4f77-a938-c3f32dab77f1"],["recommendations.contentItemId","6028822f-9195-4a60-870f-daad62bad5ed"],["recommendations.catalogueId","cce2a427-339d-49a4-afbc-76a37727db59"],["recommendations.catalogueId","330050e0-220f-4749-b7e2-3d63c15afafa"]]}">
I tested the Xiaomi 13T Pro for a week — 3 shocking ways it beats iPhone 15 Pro Max</a>
<div class="hidden text-base md:block md:mt-1 md:leading-tight text-primary-400 font-regular">But I still prefer the iPhone 15 Pro Max.</div>
<div class="flex flex-row mt-3 font-serif italic md:justify-start">
<time class="leading-tight font-regular subtitle-1" datetime="Wed, 15 Nov 2023 09:13:18 +0000">
11/15/2023
</time>
<div class="pl-3 leading-tight md:px-4 font-regular subtitle-1">
By <a href="/author/kim-gedeon">Kimberly Gedeon</a> </div>
</div>
</div>
<a aria-hidden="true" class="recs block w-1/4" data-ga-click="" data-ga-item="image" data-ga-label="I tested the Xiaomi 13T Pro for a week — 3 shocking ways it beats iPhone 15 Pro Max" href="/review/xiaomi-13t-pro" data-bibblio-link="https://api.bibblio.org/v1/activities/5dcced3f-67f1-427b-8e2a-a42c2f2ba86a" data-bibblio-payload="{"type":"Clicked","object":[["contentItemId","035d5b56-6e6a-497f-894b-d864d9c48acc"]],"context":[["sourceHref","https:\/\/api.bibblio.org\/v1\/content-items\/a03a0b66-3083-4a89-a6e3-748f216118ce"],["sourceContentItemId","a03a0b66-3083-4a89-a6e3-748f216118ce"],["recommendations.contentItemId","035d5b56-6e6a-497f-894b-d864d9c48acc"],["recommendations.contentItemId","e6503400-e9e3-43ba-9a72-107d7ef9957d"],["recommendations.contentItemId","7a627db3-07f8-43a2-be58-eba41d67e979"],["recommendations.contentItemId","5fa8dd5f-e790-44c4-a5be-68c1667f6023"],["recommendations.contentItemId","95bd4dd5-89db-4a5e-9012-7b12ca7666f2"],["recommendations.contentItemId","22c4cf6d-4a45-4209-b7b0-4911ccb0877c"],["recommendations.contentItemId","4a648131-8005-4895-bbae-30a50efe974b"],["recommendations.contentItemId","701562de-864e-4d68-92b5-a61aafc83e98"],["recommendations.contentItemId","e8983554-72a6-4f77-a938-c3f32dab77f1"],["recommendations.contentItemId","6028822f-9195-4a60-870f-daad62bad5ed"],["recommendations.catalogueId","cce2a427-339d-49a4-afbc-76a37727db59"],["recommendations.catalogueId","330050e0-220f-4749-b7e2-3d63c15afafa"]]}">
<div class="hidden border border-gray-100 md:block">
<img class="w-full" src="https://helios-i.mashable.com/imagery/reviews/01KLyulTU0JNXjL8WbYHkee/hero-image.fill.size_220x133.v1700036826.png" alt="Xiaomi 13T Pro vs. iPhone 15 Pro Max" width="220" height="133" loading="lazy">
</div>
<div class="border border-gray-100 md:hidden">
<img class="w-full" src="https://helios-i.mashable.com/imagery/reviews/01KLyulTU0JNXjL8WbYHkee/hero-image.fill.size_220x220.v1700036826.png" alt="Xiaomi 13T Pro vs. iPhone 15 Pro Max" width="220" height="220" loading="lazy">
</div>
</a>
</div>
</div>
<hr class="my-6 mx-auto w-3/4 border border-gray-100 md:hidden md:my-8">
<div class="w-full" data-ga-position="2">
<div class="flex flex-row mx-auto mt-4 max-w-4xl font-sans md:flex-nowrap md:justify-around md:mx-0 md:mt-8">
<div class="flex flex-col flex-wrap mr-4 w-3/4 text-left md:mt-0 xl:relative items-around">
<a class="recs block text-primary-400 font-semibold leading-6 text-lg header-500 md:text-xl" data-ga-click="" data-ga-item="title" data-ga-label="$text" href="/article/iphone-16-rumors" data-bibblio-link="https://api.bibblio.org/v1/activities/5dcced3f-67f1-427b-8e2a-a42c2f2ba86a" data-bibblio-payload="{"type":"Clicked","object":[["contentItemId","e6503400-e9e3-43ba-9a72-107d7ef9957d"]],"context":[["sourceHref","https:\/\/api.bibblio.org\/v1\/content-items\/a03a0b66-3083-4a89-a6e3-748f216118ce"],["sourceContentItemId","a03a0b66-3083-4a89-a6e3-748f216118ce"],["recommendations.contentItemId","035d5b56-6e6a-497f-894b-d864d9c48acc"],["recommendations.contentItemId","e6503400-e9e3-43ba-9a72-107d7ef9957d"],["recommendations.contentItemId","7a627db3-07f8-43a2-be58-eba41d67e979"],["recommendations.contentItemId","5fa8dd5f-e790-44c4-a5be-68c1667f6023"],["recommendations.contentItemId","95bd4dd5-89db-4a5e-9012-7b12ca7666f2"],["recommendations.contentItemId","22c4cf6d-4a45-4209-b7b0-4911ccb0877c"],["recommendations.contentItemId","4a648131-8005-4895-bbae-30a50efe974b"],["recommendations.contentItemId","701562de-864e-4d68-92b5-a61aafc83e98"],["recommendations.contentItemId","e8983554-72a6-4f77-a938-c3f32dab77f1"],["recommendations.contentItemId","6028822f-9195-4a60-870f-daad62bad5ed"],["recommendations.catalogueId","cce2a427-339d-49a4-afbc-76a37727db59"],["recommendations.catalogueId","330050e0-220f-4749-b7e2-3d63c15afafa"]]}">
iPhone 16 rumors: Every single thing we know about it so far</a>
<div class="hidden text-base md:block md:mt-1 md:leading-tight text-primary-400 font-regular">Yes, we’re already talking about the iPhone 16. Deal.</div>
<div class="flex flex-row mt-3 font-serif italic md:justify-start">
<time class="leading-tight font-regular subtitle-1" datetime="Thu, 21 Dec 2023 03:56:49 +0000">
12/21/2023
</time>
<div class="pl-3 leading-tight md:px-4 font-regular subtitle-1">
By <a href="/author/kim-gedeon">Kimberly Gedeon</a> </div>
</div>
</div>
<a aria-hidden="true" class="recs block w-1/4" data-ga-click="" data-ga-item="image" data-ga-label="iPhone 16 rumors: Every single thing we know about it so far" href="/article/iphone-16-rumors" data-bibblio-link="https://api.bibblio.org/v1/activities/5dcced3f-67f1-427b-8e2a-a42c2f2ba86a" data-bibblio-payload="{"type":"Clicked","object":[["contentItemId","e6503400-e9e3-43ba-9a72-107d7ef9957d"]],"context":[["sourceHref","https:\/\/api.bibblio.org\/v1\/content-items\/a03a0b66-3083-4a89-a6e3-748f216118ce"],["sourceContentItemId","a03a0b66-3083-4a89-a6e3-748f216118ce"],["recommendations.contentItemId","035d5b56-6e6a-497f-894b-d864d9c48acc"],["recommendations.contentItemId","e6503400-e9e3-43ba-9a72-107d7ef9957d"],["recommendations.contentItemId","7a627db3-07f8-43a2-be58-eba41d67e979"],["recommendations.contentItemId","5fa8dd5f-e790-44c4-a5be-68c1667f6023"],["recommendations.contentItemId","95bd4dd5-89db-4a5e-9012-7b12ca7666f2"],["recommendations.contentItemId","22c4cf6d-4a45-4209-b7b0-4911ccb0877c"],["recommendations.contentItemId","4a648131-8005-4895-bbae-30a50efe974b"],["recommendations.contentItemId","701562de-864e-4d68-92b5-a61aafc83e98"],["recommendations.contentItemId","e8983554-72a6-4f77-a938-c3f32dab77f1"],["recommendations.contentItemId","6028822f-9195-4a60-870f-daad62bad5ed"],["recommendations.catalogueId","cce2a427-339d-49a4-afbc-76a37727db59"],["recommendations.catalogueId","330050e0-220f-4749-b7e2-3d63c15afafa"]]}">
<div class="hidden border border-gray-100 md:block">
<img class="w-full" src="https://helios-i.mashable.com/imagery/articles/05vjuq9JPoajn7319Fp37Tr/hero-image.fill.size_220x133.v1695433116.jpg" alt="iPhone 15" width="220" height="133" loading="lazy">
</div>
<div class="border border-gray-100 md:hidden">
<img class="w-full" src="https://helios-i.mashable.com/imagery/articles/05vjuq9JPoajn7319Fp37Tr/hero-image.fill.size_220x220.v1695433116.jpg" alt="iPhone 15" width="220" height="220" loading="lazy">
</div>
</a>
</div>
</div>
<hr class="my-6 mx-auto w-3/4 border border-gray-100 md:hidden md:my-8">
<div class="w-full" data-ga-position="3">
<div class="flex flex-row mx-auto mt-4 max-w-4xl font-sans md:flex-nowrap md:justify-around md:mx-0 md:mt-8">
<div class="flex flex-col flex-wrap mr-4 w-3/4 text-left md:mt-0 xl:relative items-around">
<a class="recs block text-primary-400 font-semibold leading-6 text-lg header-500 md:text-xl" data-ga-click="" data-ga-item="title" data-ga-label="$text" href="/article/iphone-15-vs-iphone-15-pro" data-bibblio-link="https://api.bibblio.org/v1/activities/5dcced3f-67f1-427b-8e2a-a42c2f2ba86a" data-bibblio-payload="{"type":"Clicked","object":[["contentItemId","7a627db3-07f8-43a2-be58-eba41d67e979"]],"context":[["sourceHref","https:\/\/api.bibblio.org\/v1\/content-items\/a03a0b66-3083-4a89-a6e3-748f216118ce"],["sourceContentItemId","a03a0b66-3083-4a89-a6e3-748f216118ce"],["recommendations.contentItemId","035d5b56-6e6a-497f-894b-d864d9c48acc"],["recommendations.contentItemId","e6503400-e9e3-43ba-9a72-107d7ef9957d"],["recommendations.contentItemId","7a627db3-07f8-43a2-be58-eba41d67e979"],["recommendations.contentItemId","5fa8dd5f-e790-44c4-a5be-68c1667f6023"],["recommendations.contentItemId","95bd4dd5-89db-4a5e-9012-7b12ca7666f2"],["recommendations.contentItemId","22c4cf6d-4a45-4209-b7b0-4911ccb0877c"],["recommendations.contentItemId","4a648131-8005-4895-bbae-30a50efe974b"],["recommendations.contentItemId","701562de-864e-4d68-92b5-a61aafc83e98"],["recommendations.contentItemId","e8983554-72a6-4f77-a938-c3f32dab77f1"],["recommendations.contentItemId","6028822f-9195-4a60-870f-daad62bad5ed"],["recommendations.catalogueId","cce2a427-339d-49a4-afbc-76a37727db59"],["recommendations.catalogueId","330050e0-220f-4749-b7e2-3d63c15afafa"]]}">
iPhone 15 vs. iPhone 15 Pro: What are the differences?</a>
<div class="hidden text-base md:block md:mt-1 md:leading-tight text-primary-400 font-regular">Let's compare the camera, display, design, and more.</div>
<div class="flex flex-row mt-3 font-serif italic md:justify-start">
<time class="leading-tight font-regular subtitle-1" datetime="Mon, 11 Dec 2023 16:41:51 +0000">
12/11/2023
</time>
<div class="pl-3 leading-tight md:px-4 font-regular subtitle-1">
By <a href="/author/kim-gedeon">Kimberly Gedeon</a> </div>
</div>
</div>
<a aria-hidden="true" class="recs block w-1/4" data-ga-click="" data-ga-item="image" data-ga-label="iPhone 15 vs. iPhone 15 Pro: What are the differences?" href="/article/iphone-15-vs-iphone-15-pro" data-bibblio-link="https://api.bibblio.org/v1/activities/5dcced3f-67f1-427b-8e2a-a42c2f2ba86a" data-bibblio-payload="{"type":"Clicked","object":[["contentItemId","7a627db3-07f8-43a2-be58-eba41d67e979"]],"context":[["sourceHref","https:\/\/api.bibblio.org\/v1\/content-items\/a03a0b66-3083-4a89-a6e3-748f216118ce"],["sourceContentItemId","a03a0b66-3083-4a89-a6e3-748f216118ce"],["recommendations.contentItemId","035d5b56-6e6a-497f-894b-d864d9c48acc"],["recommendations.contentItemId","e6503400-e9e3-43ba-9a72-107d7ef9957d"],["recommendations.contentItemId","7a627db3-07f8-43a2-be58-eba41d67e979"],["recommendations.contentItemId","5fa8dd5f-e790-44c4-a5be-68c1667f6023"],["recommendations.contentItemId","95bd4dd5-89db-4a5e-9012-7b12ca7666f2"],["recommendations.contentItemId","22c4cf6d-4a45-4209-b7b0-4911ccb0877c"],["recommendations.contentItemId","4a648131-8005-4895-bbae-30a50efe974b"],["recommendations.contentItemId","701562de-864e-4d68-92b5-a61aafc83e98"],["recommendations.contentItemId","e8983554-72a6-4f77-a938-c3f32dab77f1"],["recommendations.contentItemId","6028822f-9195-4a60-870f-daad62bad5ed"],["recommendations.catalogueId","cce2a427-339d-49a4-afbc-76a37727db59"],["recommendations.catalogueId","330050e0-220f-4749-b7e2-3d63c15afafa"]]}">
<div class="hidden border border-gray-100 md:block">
<img class="w-full" src="https://helios-i.mashable.com/imagery/articles/05pOpXtThV5P0vXJmxtgMrN/hero-image.fill.size_220x133.v1700205059.png" alt="iPhone 15 vs. iPhone 15 Pro" width="220" height="133" loading="lazy">
</div>
<div class="border border-gray-100 md:hidden">
<img class="w-full" src="https://helios-i.mashable.com/imagery/articles/05pOpXtThV5P0vXJmxtgMrN/hero-image.fill.size_220x220.v1700205059.png" alt="iPhone 15 vs. iPhone 15 Pro" width="220" height="220" loading="lazy">
</div>
</a>
</div>
</div>
<hr class="my-6 mx-auto w-3/4 border border-gray-100 md:hidden md:my-8">
<div class="w-full" data-ga-position="4">
<div class="flex flex-row mx-auto mt-4 max-w-4xl font-sans md:flex-nowrap md:justify-around md:mx-0 md:mt-8">
<div class="flex flex-col flex-wrap mr-4 w-3/4 text-left md:mt-0 xl:relative items-around">
<a class="recs block text-primary-400 font-semibold leading-6 text-lg header-500 md:text-xl" data-ga-click="" data-ga-item="title" data-ga-label="$text" href="/article/iphone-15-pro-max-vs-pixel-8-pro-camera" data-bibblio-link="https://api.bibblio.org/v1/activities/5dcced3f-67f1-427b-8e2a-a42c2f2ba86a" data-bibblio-payload="{"type":"Clicked","object":[["contentItemId","5fa8dd5f-e790-44c4-a5be-68c1667f6023"]],"context":[["sourceHref","https:\/\/api.bibblio.org\/v1\/content-items\/a03a0b66-3083-4a89-a6e3-748f216118ce"],["sourceContentItemId","a03a0b66-3083-4a89-a6e3-748f216118ce"],["recommendations.contentItemId","035d5b56-6e6a-497f-894b-d864d9c48acc"],["recommendations.contentItemId","e6503400-e9e3-43ba-9a72-107d7ef9957d"],["recommendations.contentItemId","7a627db3-07f8-43a2-be58-eba41d67e979"],["recommendations.contentItemId","5fa8dd5f-e790-44c4-a5be-68c1667f6023"],["recommendations.contentItemId","95bd4dd5-89db-4a5e-9012-7b12ca7666f2"],["recommendations.contentItemId","22c4cf6d-4a45-4209-b7b0-4911ccb0877c"],["recommendations.contentItemId","4a648131-8005-4895-bbae-30a50efe974b"],["recommendations.contentItemId","701562de-864e-4d68-92b5-a61aafc83e98"],["recommendations.contentItemId","e8983554-72a6-4f77-a938-c3f32dab77f1"],["recommendations.contentItemId","6028822f-9195-4a60-870f-daad62bad5ed"],["recommendations.catalogueId","cce2a427-339d-49a4-afbc-76a37727db59"],["recommendations.catalogueId","330050e0-220f-4749-b7e2-3d63c15afafa"]]}">
iPhone 15 Pro Max vs. Pixel 8 Pro camera face-off: the winner may shock you</a>
<div class="hidden text-base md:block md:mt-1 md:leading-tight text-primary-400 font-regular">People swear Pixels take the best photos. Are they full of it?</div>
<div class="flex flex-row mt-3 font-serif italic md:justify-start">
<time class="leading-tight font-regular subtitle-1" datetime="Mon, 06 Nov 2023 11:45:00 +0000">
11/06/2023
</time>
<div class="pl-3 leading-tight md:px-4 font-regular subtitle-1">
By <a href="/author/kim-gedeon">Kimberly Gedeon</a> </div>
</div>
</div>
<a aria-hidden="true" class="recs block w-1/4" data-ga-click="" data-ga-item="image" data-ga-label="iPhone 15 Pro Max vs. Pixel 8 Pro camera face-off: the winner may shock you" href="/article/iphone-15-pro-max-vs-pixel-8-pro-camera" data-bibblio-link="https://api.bibblio.org/v1/activities/5dcced3f-67f1-427b-8e2a-a42c2f2ba86a" data-bibblio-payload="{"type":"Clicked","object":[["contentItemId","5fa8dd5f-e790-44c4-a5be-68c1667f6023"]],"context":[["sourceHref","https:\/\/api.bibblio.org\/v1\/content-items\/a03a0b66-3083-4a89-a6e3-748f216118ce"],["sourceContentItemId","a03a0b66-3083-4a89-a6e3-748f216118ce"],["recommendations.contentItemId","035d5b56-6e6a-497f-894b-d864d9c48acc"],["recommendations.contentItemId","e6503400-e9e3-43ba-9a72-107d7ef9957d"],["recommendations.contentItemId","7a627db3-07f8-43a2-be58-eba41d67e979"],["recommendations.contentItemId","5fa8dd5f-e790-44c4-a5be-68c1667f6023"],["recommendations.contentItemId","95bd4dd5-89db-4a5e-9012-7b12ca7666f2"],["recommendations.contentItemId","22c4cf6d-4a45-4209-b7b0-4911ccb0877c"],["recommendations.contentItemId","4a648131-8005-4895-bbae-30a50efe974b"],["recommendations.contentItemId","701562de-864e-4d68-92b5-a61aafc83e98"],["recommendations.contentItemId","e8983554-72a6-4f77-a938-c3f32dab77f1"],["recommendations.contentItemId","6028822f-9195-4a60-870f-daad62bad5ed"],["recommendations.catalogueId","cce2a427-339d-49a4-afbc-76a37727db59"],["recommendations.catalogueId","330050e0-220f-4749-b7e2-3d63c15afafa"]]}">
<div class="hidden border border-gray-100 md:block">
<img class="w-full" src="https://helios-i.mashable.com/imagery/articles/010lIISWGANOrEzEP42OWyl/hero-image.fill.size_220x133.v1699151970.jpg" alt="iPhone 15 Pro Max vs. Google Pixel 8 camera shot of Washington Square Arch" width="220" height="133" loading="lazy">
</div>
<div class="border border-gray-100 md:hidden">
<img class="w-full" src="https://helios-i.mashable.com/imagery/articles/010lIISWGANOrEzEP42OWyl/hero-image.fill.size_220x220.v1699151970.jpg" alt="iPhone 15 Pro Max vs. Google Pixel 8 camera shot of Washington Square Arch" width="220" height="220" loading="lazy">
</div>
</a>
</div>
</div>
<hr class="my-6 mx-auto w-3/4 border border-gray-100 md:hidden md:my-8">
<div class="w-full" data-ga-position="5">
<div class="flex flex-row mx-auto mt-4 max-w-4xl font-sans md:flex-nowrap md:justify-around md:mx-0 md:mt-8">
<div class="flex flex-col flex-wrap mr-4 w-3/4 text-left md:mt-0 xl:relative items-around">
<a class="recs block text-primary-400 font-semibold leading-6 text-lg header-500 md:text-xl" data-ga-click="" data-ga-item="title" data-ga-label="$text" href="/article/iphone-15-pro-max-pixel-8-pro-blind-test" data-bibblio-link="https://api.bibblio.org/v1/activities/5dcced3f-67f1-427b-8e2a-a42c2f2ba86a" data-bibblio-payload="{"type":"Clicked","object":[["contentItemId","95bd4dd5-89db-4a5e-9012-7b12ca7666f2"]],"context":[["sourceHref","https:\/\/api.bibblio.org\/v1\/content-items\/a03a0b66-3083-4a89-a6e3-748f216118ce"],["sourceContentItemId","a03a0b66-3083-4a89-a6e3-748f216118ce"],["recommendations.contentItemId","035d5b56-6e6a-497f-894b-d864d9c48acc"],["recommendations.contentItemId","e6503400-e9e3-43ba-9a72-107d7ef9957d"],["recommendations.contentItemId","7a627db3-07f8-43a2-be58-eba41d67e979"],["recommendations.contentItemId","5fa8dd5f-e790-44c4-a5be-68c1667f6023"],["recommendations.contentItemId","95bd4dd5-89db-4a5e-9012-7b12ca7666f2"],["recommendations.contentItemId","22c4cf6d-4a45-4209-b7b0-4911ccb0877c"],["recommendations.contentItemId","4a648131-8005-4895-bbae-30a50efe974b"],["recommendations.contentItemId","701562de-864e-4d68-92b5-a61aafc83e98"],["recommendations.contentItemId","e8983554-72a6-4f77-a938-c3f32dab77f1"],["recommendations.contentItemId","6028822f-9195-4a60-870f-daad62bad5ed"],["recommendations.catalogueId","cce2a427-339d-49a4-afbc-76a37727db59"],["recommendations.catalogueId","330050e0-220f-4749-b7e2-3d63c15afafa"]]}">
I blind-tested 20 iPhone users on which takes better pics: iPhone 15 Pro Max or Pixel 8 Pro</a>
<div class="hidden text-base md:block md:mt-1 md:leading-tight text-primary-400 font-regular">Do iPhone owners actually prefer photos from Apple?</div>
<div class="flex flex-row mt-3 font-serif italic md:justify-start">
<time class="leading-tight font-regular subtitle-1" datetime="Tue, 21 Nov 2023 20:25:36 +0000">
11/21/2023
</time>
<div class="pl-3 leading-tight md:px-4 font-regular subtitle-1">
By <a href="/author/kim-gedeon">Kimberly Gedeon</a> </div>
</div>
</div>
<a aria-hidden="true" class="recs block w-1/4" data-ga-click="" data-ga-item="image" data-ga-label="I blind-tested 20 iPhone users on which takes better pics: iPhone 15 Pro Max or Pixel 8 Pro" href="/article/iphone-15-pro-max-pixel-8-pro-blind-test" data-bibblio-link="https://api.bibblio.org/v1/activities/5dcced3f-67f1-427b-8e2a-a42c2f2ba86a" data-bibblio-payload="{"type":"Clicked","object":[["contentItemId","95bd4dd5-89db-4a5e-9012-7b12ca7666f2"]],"context":[["sourceHref","https:\/\/api.bibblio.org\/v1\/content-items\/a03a0b66-3083-4a89-a6e3-748f216118ce"],["sourceContentItemId","a03a0b66-3083-4a89-a6e3-748f216118ce"],["recommendations.contentItemId","035d5b56-6e6a-497f-894b-d864d9c48acc"],["recommendations.contentItemId","e6503400-e9e3-43ba-9a72-107d7ef9957d"],["recommendations.contentItemId","7a627db3-07f8-43a2-be58-eba41d67e979"],["recommendations.contentItemId","5fa8dd5f-e790-44c4-a5be-68c1667f6023"],["recommendations.contentItemId","95bd4dd5-89db-4a5e-9012-7b12ca7666f2"],["recommendations.contentItemId","22c4cf6d-4a45-4209-b7b0-4911ccb0877c"],["recommendations.contentItemId","4a648131-8005-4895-bbae-30a50efe974b"],["recommendations.contentItemId","701562de-864e-4d68-92b5-a61aafc83e98"],["recommendations.contentItemId","e8983554-72a6-4f77-a938-c3f32dab77f1"],["recommendations.contentItemId","6028822f-9195-4a60-870f-daad62bad5ed"],["recommendations.catalogueId","cce2a427-339d-49a4-afbc-76a37727db59"],["recommendations.catalogueId","330050e0-220f-4749-b7e2-3d63c15afafa"]]}">
<div class="hidden border border-gray-100 md:block">
<img class="w-full" src="https://helios-i.mashable.com/imagery/articles/07ymGWCWkRSZKBMkwKGwgpV/hero-image.fill.size_220x133.v1700598656.jpg" alt="Empire State Building: iPhone 15 Pro Max vs. Google Pixel 8 Pro" width="220" height="133" loading="lazy">
</div>
<div class="border border-gray-100 md:hidden">
<img class="w-full" src="https://helios-i.mashable.com/imagery/articles/07ymGWCWkRSZKBMkwKGwgpV/hero-image.fill.size_220x220.v1700598656.jpg" alt="Empire State Building: iPhone 15 Pro Max vs. Google Pixel 8 Pro" width="220" height="220" loading="lazy">
</div>
</a>
</div>
</div>
</div>
</section>
<section class="mx-auto max-w-8xl">
<hr class="my-8 mx-auto border border-gray-100 md:my-12">
<div class="mt-12 font-bold header-200 text-primary-400 md:!leading-6">Trending on Mashable</div>
<div class="justify-center mt-8 w-full" data-module="content-list" data-ga-module="chartbeat-recirc" data-ga-element="content-stripe" data-ga-action="content-stripe">
<div class="w-full" data-ga-position="1">
<div class="flex flex-row mx-auto mt-4 max-w-4xl font-sans md:flex-nowrap md:justify-around md:mx-0 md:mt-8">
<div class="flex flex-col flex-wrap mr-4 w-3/4 text-left md:mt-0 xl:relative items-around">
<a class=" block text-primary-400 font-semibold leading-6 text-lg header-500 md:text-xl" data-ga-click="" data-ga-item="title" data-ga-label="$text" href="/article/nyt-connections-hint-answer-today-december-24-2023">
NYT Connections today: See hints and answers for December 24</a>
<div class="hidden text-base md:block md:mt-1 md:leading-tight text-primary-400 font-regular">Everything you need to solve 'Connections' #196.</div>
<div class="flex flex-row mt-3 font-serif italic md:justify-start">
<time class="leading-tight font-regular subtitle-1" datetime="Sun, 24 Dec 2023 02:00:00 +0000">
19 hours ago
</time>
<div class="pl-3 leading-tight md:px-4 font-regular subtitle-1">
By <a href="/author/mashable-team">Mashable Team</a> </div>
</div>
</div>
<a aria-hidden="true" class=" block w-1/4" data-ga-click="" data-ga-item="image" data-ga-label="NYT Connections today: See hints and answers for December 24" href="/article/nyt-connections-hint-answer-today-december-24-2023">
<div class="hidden border border-gray-100 md:block">
<img class="w-full" src="https://helios-i.mashable.com/imagery/articles/00rQqQxUVL8hRtwUoo3Wvz3/hero-image.fill.size_220x133.v1703270816.jpg" alt="A phone displaying the New York Times game 'Connections.'" width="220" height="133" loading="lazy">
</div>
<div class="border border-gray-100 md:hidden">
<img class="w-full" src="https://helios-i.mashable.com/imagery/articles/00rQqQxUVL8hRtwUoo3Wvz3/hero-image.fill.size_220x220.v1703270816.jpg" alt="A phone displaying the New York Times game 'Connections.'" width="220" height="220" loading="lazy">
</div>
</a>
</div>
</div>
<hr class="my-6 mx-auto w-3/4 border border-gray-100 md:hidden md:my-8">
<div class="w-full" data-ga-position="2">
<div class="flex flex-row mx-auto mt-4 max-w-4xl font-sans md:flex-nowrap md:justify-around md:mx-0 md:mt-8">
<div class="flex flex-col flex-wrap mr-4 w-3/4 text-left md:mt-0 xl:relative items-around">
<a class=" block text-primary-400 font-semibold leading-6 text-lg header-500 md:text-xl" data-ga-click="" data-ga-item="title" data-ga-label="$text" href="/article/nasa-mars-perseverance-water">
NASA's car-sized rover spots strong evidence of gushing water on Mars</a>
<div class="hidden text-base md:block md:mt-1 md:leading-tight text-primary-400 font-regular">Mars was once a wet world.</div>
<div class="flex flex-row mt-3 font-serif italic md:justify-start">
<time class="leading-tight font-regular subtitle-1" datetime="Sat, 23 Dec 2023 10:00:00 +0000">
12/23/2023
</time>
<div class="pl-3 leading-tight md:px-4 font-regular subtitle-1">
By <a href="/author/mark-kaufman">Mark Kaufman</a> </div>
</div>
</div>
<a aria-hidden="true" class=" block w-1/4" data-ga-click="" data-ga-item="image" data-ga-label="NASA's car-sized rover spots strong evidence of gushing water on Mars" href="/article/nasa-mars-perseverance-water">
<div class="hidden border border-gray-100 md:block">
<img class="w-full" src="https://helios-i.mashable.com/imagery/articles/07IUVOE0ihJkUrBP93DtAv0/hero-image.fill.size_220x133.v1703170064.jpg" alt="The Perseverance rover captured this Martian image using one of its navigation cameras. " width="220" height="133" loading="lazy">
</div>
<div class="border border-gray-100 md:hidden">
<img class="w-full" src="https://helios-i.mashable.com/imagery/articles/07IUVOE0ihJkUrBP93DtAv0/hero-image.fill.size_220x220.v1703170064.jpg" alt="The Perseverance rover captured this Martian image using one of its navigation cameras. " width="220" height="220" loading="lazy">
</div>
</a>
</div>
</div>
<hr class="my-6 mx-auto w-3/4 border border-gray-100 md:hidden md:my-8">
<div class="w-full" data-ga-position="3">
<div class="flex flex-row mx-auto mt-4 max-w-4xl font-sans md:flex-nowrap md:justify-around md:mx-0 md:mt-8">
<div class="flex flex-col flex-wrap mr-4 w-3/4 text-left md:mt-0 xl:relative items-around">
<a class=" block text-primary-400 font-semibold leading-6 text-lg header-500 md:text-xl" data-ga-click="" data-ga-item="title" data-ga-label="$text" href="/article/wordle-today-answer-december-24-2023">
Wordle today: Here's the answer and hints for December 24</a>
<div class="hidden text-base md:block md:mt-1 md:leading-tight text-primary-400 font-regular">Here are some tips and tricks to help you find the answer to "Wordle" #918.</div>
<div class="flex flex-row mt-3 font-serif italic md:justify-start">
<time class="leading-tight font-regular subtitle-1" datetime="Sun, 24 Dec 2023 03:00:00 +0000">
18 hours ago
</time>
<div class="pl-3 leading-tight md:px-4 font-regular subtitle-1">
By <a href="/author/mashable-team">Mashable Team</a> </div>
</div>
</div>
<a aria-hidden="true" class=" block w-1/4" data-ga-click="" data-ga-item="image" data-ga-label="Wordle today: Here's the answer and hints for December 24" href="/article/wordle-today-answer-december-24-2023">
<div class="hidden border border-gray-100 md:block">
<img class="w-full" src="https://helios-i.mashable.com/imagery/articles/03zcjhK0iRqAWOqtN9U35SF/hero-image.fill.size_220x133.v1702496645.jpg" alt="A Wordle logo seen displayed on a smartphone against a cluttered desk." width="220" height="133" loading="lazy">
</div>
<div class="border border-gray-100 md:hidden">
<img class="w-full" src="https://helios-i.mashable.com/imagery/articles/03zcjhK0iRqAWOqtN9U35SF/hero-image.fill.size_220x220.v1702496645.jpg" alt="A Wordle logo seen displayed on a smartphone against a cluttered desk." width="220" height="220" loading="lazy">
</div>
</a>
</div>
</div>
<hr class="my-6 mx-auto w-3/4 border border-gray-100 md:hidden md:my-8">
<div class="w-full" data-ga-position="4">
<div class="flex flex-row mx-auto mt-4 max-w-4xl font-sans md:flex-nowrap md:justify-around md:mx-0 md:mt-8">
<div class="flex flex-col flex-wrap mr-4 w-3/4 text-left md:mt-0 xl:relative items-around">
<a class=" block text-primary-400 font-semibold leading-6 text-lg header-500 md:text-xl" data-ga-click="" data-ga-item="title" data-ga-label="$text" href="/article/moon-earth-image-slim">
Spacecraft sends back unusual view of Earth and the moon</a>
<div class="hidden text-base md:block md:mt-1 md:leading-tight text-primary-400 font-regular">Why does the moon appear so far away?</div>
<div class="flex flex-row mt-3 font-serif italic md:justify-start">
<time class="leading-tight font-regular subtitle-1" datetime="Thu, 21 Dec 2023 10:00:00 +0000">
12/21/2023
</time>
<div class="pl-3 leading-tight md:px-4 font-regular subtitle-1">
By <a href="/author/elisha-sauers">Elisha Sauers</a> </div>
</div>
</div>
<a aria-hidden="true" class=" block w-1/4" data-ga-click="" data-ga-item="image" data-ga-label="Spacecraft sends back unusual view of Earth and the moon" href="/article/moon-earth-image-slim">
<div class="hidden border border-gray-100 md:block">
<img class="w-full" src="https://helios-i.mashable.com/imagery/articles/078PuaSQTyPAnUE3G8z81J2/hero-image.fill.size_220x133.v1703096687.jpg" alt="SLIM spacecraft viewing Earth and moon" width="220" height="133" loading="lazy">
</div>
<div class="border border-gray-100 md:hidden">
<img class="w-full" src="https://helios-i.mashable.com/imagery/articles/078PuaSQTyPAnUE3G8z81J2/hero-image.fill.size_220x220.v1703096687.jpg" alt="SLIM spacecraft viewing Earth and moon" width="220" height="220" loading="lazy">
</div>
</a>
</div>
</div>
<hr class="my-6 mx-auto w-3/4 border border-gray-100 md:hidden md:my-8">
<div class="w-full" data-ga-position="5">
<div class="flex flex-row mx-auto mt-4 max-w-4xl font-sans md:flex-nowrap md:justify-around md:mx-0 md:mt-8">
<div class="flex flex-col flex-wrap mr-4 w-3/4 text-left md:mt-0 xl:relative items-around">
<a class=" block text-primary-400 font-semibold leading-6 text-lg header-500 md:text-xl" data-ga-click="" data-ga-item="title" data-ga-label="$text" href="/article/james-webb-space-telescope-supernova">
Webb telescope image isn't just glorious. It shows warped space.</a>
<div class="hidden text-base md:block md:mt-1 md:leading-tight text-primary-400 font-regular">Massive objects distort spacetime.</div>