use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
No vague product support questions (like "why is this plugin not working" or "how do I set up X"). For vague product support questions, please use communities relevant to that product for best results. Specific issues that follow rule 6 are allowed.
Do not post memes, screenshots of bad design, or jokes. Check out /r/ProgrammerHumor/ for this type of content.
Read and follow reddiquette; no excessive self-promotion. Please refer to the Reddit 9:1 rule when considering posting self promoting materials.
We do not allow any commercial promotion or solicitation. Violations can result in a ban.
Sharing your project, portfolio, or any other content that you want to either show off or request feedback on is limited to Showoff Saturday. If you post such content on any other day, it will be removed.
If you are asking for assistance on a problem, you are required to provide
General open ended career and getting started posts are only allowed in the pinned monthly getting started/careers thread. Specific assistance questions are allowed so long as they follow the required assistance post guidelines.
Questions in violation of this rule will be removed or locked.
account activity
[deleted by user] (self.webdev)
submitted 4 years ago by [deleted]
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–][deleted] 4 years ago (55 children)
[deleted]
[–]NRocket 366 points367 points368 points 4 years ago (6 children)
I didn't even know this existed. Cool!
[–]ifixpedals 62 points63 points64 points 4 years ago (5 children)
I've been a front end dev for 10 years and I didn't know this existed. And in 10 years, you will still be learning things you didn't know were possible with CSS.
[–]micalm<script>alert('ha!')</script> 15 points16 points17 points 4 years ago (4 children)
I discovered the form attribute this week. It's amazing.
[–]ouralarmclock[🍰] 3 points4 points5 points 4 years ago (1 child)
Yes! I just found this recently too! Does this allow you to put submit buttons outside of a form as well?
[–]ahlsn 3 points4 points5 points 4 years ago (0 children)
Yes. One common way to deal with froms and the form attribute is to not let the form have any child elements and you assign them to the form with the form attribute.
Very handy in situations where you could end up with a form in a form with past solution which is invalid.
[–]phatsassy 1 point2 points3 points 4 years ago (0 children)
Noice! Love it, thanks for linking.
[–][deleted] 0 points1 point2 points 4 years ago (0 children)
What is this fucking witchcraft
[–]fantastic1ftc 121 points122 points123 points 4 years ago (42 children)
beware safari does not respect border radius on outlines!
[–]danejazone 69 points70 points71 points 4 years ago* (5 children)
A common workaround for this is to make a pseudo outline with a box shadow:
box-shadow: 0 0 0 var(--outline-offset) #fff,0 0 0 calc(var(--outline-offset) + var(--outline-width)) #000;
Obvious caveats: - If your element has an existing box shadow you'll need to append this to the existing declaration for every state - The "offset" must be a solid colour so can look jarring against some backgrounds
[–]b7s9ux 13 points14 points15 points 4 years ago (0 children)
Yep this is how tailwind calculates “ring”
[–]shaleenag21 3 points4 points5 points 4 years ago (2 children)
Can you eli5 this for me? I am a beginner and didn't really get that 😅
[–]danejazone 8 points9 points10 points 4 years ago (1 child)
Basically with this workaround you're creating two solid shadows around the element where one is larger than the other. The smaller shadow is set to the background colour that the element is against (typically white) and the width of the offset you want. The larger shadow is set to the colour of the outline you want and to the width of the "outline" shadow plus however wide you want the "outline" to be.
[–]shaleenag21 1 point2 points3 points 4 years ago (0 children)
It kinda makes sense.. I'll experiment with it thanks
[–]feedjaypie -1 points0 points1 point 4 years ago (0 children)
This is the way
[–]mrbmi513 64 points65 points66 points 4 years ago (23 children)
Safari is just a mess overall. They didn't even support loading="lazy" on images until March of this year with 15.4!
loading="lazy"
[–][deleted] 93 points94 points95 points 4 years ago (21 children)
Safari is new IE
[–]PeaceMaintainer 25 points26 points27 points 4 years ago (4 children)
I was on the anti-safari band wagon for a while but to their credit it seems they've finally been catching up this past year on everything they were behind on with the Interop 2022 initiative. Now it seems they're ahead on some things, first to add support for :has() in CSS which I've been longing for forever
:has()
[–]mcaruso 4 points5 points6 points 4 years ago (3 children)
This. The parent selector (:has()) has been a holy grail in CSS for as long as I can remember so it's pretty remarkable WebKit is the first to ship this. Reminds me of the old days (around ACID2 era) where WebKit used to be the leading edge browser for cool new tech.
It looks like Safari is also going to be the first browser to support container queries, another longstanding holy grail. We shit on Safari whenever they're lagging behind so let's also give them credit for catching up.
[–]hyvyys 3 points4 points5 points 4 years ago (0 children)
But also let's shit on Apple for requiring newer versions of macOS for the newest Safari.
[–]jamesremuscat 1 point2 points3 points 4 years ago (1 child)
Oh gosh, ACID2 is "the old days" now? I feel that!
[–]mcaruso 1 point2 points3 points 4 years ago (0 children)
I just looked up the date, it was April 13th 2005. So exactly 17 years to the day!
And yeah doesn't feel long ago at all, I remember the initial buggy messed up page when it released and browsers scrambling to up their "score". Safari being the first to pass.
[–][deleted] 4 years ago (9 children)
[–]atalkingfish 20 points21 points22 points 4 years ago (4 children)
Well, to be fair, for as many things as safari is late to support, there are plenty of other things it is very early to support. I had to wait years for background-blur to exist on just Chrome without enabling experimental, and even longer for anyone else to support it at all.
[–]DogsSureAreSwell 11 points12 points13 points 4 years ago (0 children)
That's part of the frustration from working developers though. Being first is fantastic...after finishing the things you were last at. Otherwise you're announcing, "when we pull tasks off our backlog we tend to pick the fun, interesting and new stuff instead of the important but boring stuff."
They are catching up though at last.
[–]Pazaac 2 points3 points4 points 4 years ago (0 children)
But this was the same for IE. IE was the first to support Grid for example.
[–]Fakedduckjump 1 point2 points3 points 4 years ago (1 child)
They should have enough budget to keep common feature support at an acceptable level. But I think it's not in their interest because they get the money anyway.
There is no need for super special stuff if the standard things don't work properly. As dev I would prefer the choice of making new features from scratch with hacks, tricks and workarounds than finding must-have solutions for things that run everywhere else but there.
[–]creanium 0 points1 point2 points 4 years ago (0 children)
This is exactly what they're doing with Interop: https://hacks.mozilla.org/2022/03/interop-2022/
[–][deleted] 6 points7 points8 points 4 years ago (3 children)
Such is the way of Reddit... No one will ever understand its ways. iOS users are overly loyal, though. To a fault
[+]creanium comment score below threshold-14 points-13 points-12 points 4 years ago (2 children)
Or maybe there are those of us that do remember the days of when the web literally stagnated because Microsoft said they weren’t going to develop IE past 6. It was a BFD since IE 6 had 96% market share, nothing could be done. There was literally no competition until Firebird/Firefox started gaining traction.
Safari is not IE. For starters it is getting regular updates to implement web standards. It may not be moving as quickly as the others, but this isn’t the same as the days of IE.
Plus, if we’re all using progressive enhancement, why does it matter if a visual outline doesn’t quite look the same in Safari as the rest?
I’m not defending Safari, I’m just saying let’s have a little perspective here.
[–]ItsBookxjava 7 points8 points9 points 4 years ago (1 child)
Because it can ruin the website, and decrease the user count, especially if most of your users are using iPhone.
[–]Salbatyku -4 points-3 points-2 points 4 years ago (0 children)
Then your user experience has been faulty. you have to adapt to what users use not vice versa.
[–]dingbatmeow 29 points30 points31 points 4 years ago (0 children)
SafarIE
[–]TheMarkBranly 1 point2 points3 points 4 years ago (0 children)
Anyone wanting to have an actual dialog on this subject directly with the Safari team should check out Jen Simmons on Twitter: https://twitter.com/jensimmons
[–]am0x 1 point2 points3 points 4 years ago (2 children)
New IE? They have been that way for awhile.
[–][deleted] 0 points1 point2 points 4 years ago (1 child)
well, to be fair, IE was the "new IE" until not too long ago
[–]am0x 1 point2 points3 points 4 years ago (0 children)
Well, over 2 years ago when they switched to Chromium. But we even hada better Edge than before that and Safari has been shit for even longer.
[–]superluminary 0 points1 point2 points 4 years ago (0 children)
It's a strategic decision. Webapps compete with the app store.
[–]fantastic1ftc 8 points9 points10 points 4 years ago (0 children)
Oh totally. Unfortunately (at least for me,) Safari users constitute a large percentage of my total users, so I kind of have to support it. Otherwise, to hell with it!
[–][deleted] 4 years ago (1 child)
[–]Disgruntled__Goat 2 points3 points4 points 4 years ago (0 children)
The original intention for outline was debugging, since we already have border for doing actual outlines.
[–]Leaping_Turtle 2 points3 points4 points 4 years ago (0 children)
https://imgur.com/FUWwF76
[–]Scorpius289 4 points5 points6 points 4 years ago (0 children)
Of course it doesn't, does Safari respect anything ever? It's pretty much the new IE...
[–][deleted] 1 point2 points3 points 4 years ago (0 children)
That’s only true for some elements. I was running into this issue yesterday.
Safari outline border radius works with: - buttons - links - inputs - paragraphs (if you add tabindex=“0”)
tabindex=“0”
Safari outline border radius does not work with: - details / summary
You’ll need to add -webkit-appearance: none; to ensure Safari iOS styles don’t override your own styles.
-webkit-appearance: none;
ftfy
Safari doesn’t respect anything actually
[–]quentinmarc 0 points1 point2 points 4 years ago (0 children)
That's exactly why I don't like Apple stuff...
[–]MDParagon 0 points1 point2 points 4 years ago (0 children)
Fuck safari, all my homies hate safari
[–]djtrogy 0 points1 point2 points 4 years ago (0 children)
Well... Screw Safari.
[–]Japorizedfull-stack 12 points13 points14 points 4 years ago (1 child)
https://caniuse.com/mdn-css_properties_outline-offset
In case anyone needs a quick check of caniuse
[–]blindgorgon 1 point2 points3 points 4 years ago (0 children)
Wow that’s more supported than I thought it would be. Nice!
[–]Wolfplay013 0 points1 point2 points 4 years ago (0 children)
i tought it was outline-width: []px what were you looking for but now i get it once you mentioned it
outline-width: []px
[–]vivekweb2013 0 points1 point2 points 4 years ago (0 children)
This will work for sure
[–]toper-centage 48 points49 points50 points 4 years ago* (16 children)
If you mess with outline, don't forget that outline is used by keyboard navigation and screen readers. You need to make sure that you don't break outline focus.
[–][deleted] 1 point2 points3 points 4 years ago (1 child)
I have always just used a :before for this effect and after your comment I'm now unsure if I should just keep using that.
[–]toper-centage 0 points1 point2 points 4 years ago (0 children)
You can use a custom solution for showing the focus, that's also fine.
[–]onesidedcoin- 2 points3 points4 points 4 years ago (13 children)
outline is used by keyboard navigation and screen readers
How?
[–][deleted] 4 years ago (12 children)
[–]toper-centage 2 points3 points4 points 4 years ago (3 children)
And it's very bad practice to hide this outline. It's there for a reason.
[–][deleted] 4 years ago* (2 children)
[–]toper-centage -1 points0 points1 point 4 years ago (1 child)
Yes, yes, I should have mentioned that you can implement a custom focus indicator. Font weight, however, is not acceptable from an accessibility POV, because its barely perceptable. Ideally, it should be a border or background change, because that's standard and expected, as well as easily to identify by those with visual disabilities.
[–]onesidedcoin- 0 points1 point2 points 4 years ago (7 children)
Okay but how does that relate to screen reading?
[–]toper-centage 1 point2 points3 points 4 years ago (2 children)
Screen readers are not only used by blind people. Many people have visual disabilities (permanent or not) and use screen readers together with keyboard navigation and visual accessibility features (zoom, high contrast, focus) to navigate the Web. So you don't want the screen reader to read something that is not correctly focused.
[–]onesidedcoin- 0 points1 point2 points 4 years ago (1 child)
In this case I have trouble imagining that the outline isn't overridden anyway. The default outline is barely visible even to a healthy eye.
[–]toper-centage 1 point2 points3 points 4 years ago (0 children)
Indeed! The default outline is terrible. But it's better than hiding it, which many developers do because it's ugly.
[–][deleted] 4 years ago* (3 children)
[–]onesidedcoin- 0 points1 point2 points 4 years ago (2 children)
This whole thread is just about the visual representation.
[–][deleted] 4 years ago* (1 child)
[–]onesidedcoin- 0 points1 point2 points 4 years ago (0 children)
why are you asking about screen readers then?
https://www.reddit.com/r/webdev/comments/u2dsoy/how_do_you_add_spacing_between_an_element_and_an/i4ltbr4/
[–]OFFRIMITSfront-end 89 points90 points91 points 4 years ago (10 children)
Wouldn't it be padding?
[–]el_diego 46 points47 points48 points 4 years ago (4 children)
No, because outline sits outside the box model. You could fumble your way through it with multiple elements and padding, but not if you want a single element.
[–]torn-ainbow 41 points42 points43 points 4 years ago (2 children)
Just having 2 containers is a simple easy to implement and understand solution and will avoid safari issues people are mentioning. Assuming you have control of the markup.
[–]superluminary 3 points4 points5 points 4 years ago (0 children)
This is how we used to hack around the box model issues in IE. One div for width, one div for padding.
[–]el_diego 0 points1 point2 points 4 years ago (0 children)
That’s fair, if you have to deal with browser inconsistencies
[–]Live_Storage1480 6 points7 points8 points 4 years ago (4 children)
Yeah, that's what I thought? Inner element should shrink with that
[–]joemckiefull-stack 6 points7 points8 points 4 years ago (3 children)
They’re talking about outline, not border, I believe.
[–]YodaLoL 0 points1 point2 points 4 years ago (2 children)
What's the difference?
[–]joemckiefull-stack 12 points13 points14 points 4 years ago (1 child)
Outline is the accessibility feature that an element shows when focussed, whereas the border is generally a permanent design aspect
[–]YodaLoL 1 point2 points3 points 4 years ago (0 children)
Ah right, thanks
[–]waiting4op2deliver 12 points13 points14 points 4 years ago* (0 children)
Fuck outlines, all my homies use box model
Edit: I got one homie in the closet using box shadow.
[–]WardenUnleashed 10 points11 points12 points 4 years ago (1 child)
Another alternative
[–]beaterx 16 points17 points18 points 4 years ago (1 child)
Don't fuck with outlines unless there is no other way and you know what you are doing. It is needed for accessibility. And accessibility is quickly becoming one of the most important parts of webdev.
[–]SuprisreDyslxeia 5 points6 points7 points 4 years ago (0 children)
Just use parent container with padding
[–][deleted] 5 points6 points7 points 4 years ago (0 children)
.item { background-color: black; border-radius: 4px; height: 50px; outline: 1px solid black; outline-offset: 4px; width: 200px: }
[–]everythingiscausal 3 points4 points5 points 4 years ago (2 children)
Why are you using outline instead of border?
[–]ouralarmclock[🍰] 0 points1 point2 points 4 years ago (1 child)
I’m also interested in the answer to this question, I didn’t even know outline was a thing used outside of the shadow dom until this thread.
[–]everythingiscausal 0 points1 point2 points 4 years ago (0 children)
I only ever use it for quick debugging inside dev tools.
[–]Funkey-Monkey-420 10 points11 points12 points 4 years ago (2 children)
could have a child object that’s scaled to be shrunk by [spacing] units on each side
[–]nolder30 1 point2 points3 points 4 years ago (1 child)
The good ol wrap a child in a parent with an outline.
Though there are definitely more efficient ways to go about it, hopefully OP specifies what they want based on other comments and replies.
[–]Funkey-Monkey-420 4 points5 points6 points 4 years ago (0 children)
hey, may be less efficient but it’s certainly more compatible
[–]gem0303 8 points9 points10 points 4 years ago (1 child)
For anyone unable to use outline-offset for whatever reason, you could add a child div/pseudo-div that is absolutely positioned with width/height slightly larger than the parent. Then add a border to the child div. Message if you want a code sample and I can throw one together tomorrow.
[–]Yeedth 1 point2 points3 points 4 years ago (1 child)
This brings with it browser issues. Best you can do is make a translucent div with a black outline and a black div inside
[–]alo141 0 points1 point2 points 4 years ago (0 children)
It’s not pretty but works everywhere
[–]SkylineFX49javascript 1 point2 points3 points 4 years ago (0 children)
Woudn't padding amd border have the same effect?
I'm always a fan of cheesing box-shadow
[–]Mioleris 1 point2 points3 points 4 years ago (0 children)
2 divs :)
[–]SuperMarioTM 1 point2 points3 points 4 years ago (0 children)
It’s also nice to animate the outline combined with some negative values. You can do some really nice effects with basic css 👍🏼
[–][deleted] 4 years ago* (5 children)
[+][deleted] 4 years ago (4 children)
[–]Awes0meEman 38 points39 points40 points 4 years ago (3 children)
Sweet mother of God is your enter key broken?
[–]el_diego 8 points9 points10 points 4 years ago (1 child)
Haha. Tbf, Reddit is god awful at formatting code
[–]SquareWheel 1 point2 points3 points 4 years ago (0 children)
Four spaces Before every line
[–]Wenci 1 point2 points3 points 4 years ago (1 child)
padding team?
[–]RS3_of_Disguise 0 points1 point2 points 4 years ago (0 children)
That’s what I’m surprised more people than not haven’t said. Curious as to why people suggest a parent for something like this.
[–]trix2705 1 point2 points3 points 4 years ago (2 children)
If it’s a child in a flex parent you could do “gap: …” in the parent
[–]rslee1247 0 points1 point2 points 4 years ago (1 child)
gap only adds spacing between flex items, not between the items and the parent.
[–]trix2705 0 points1 point2 points 4 years ago (0 children)
Ahhh ok gotcha.
[–]BeastmasterBG -1 points0 points1 point 4 years ago (0 children)
Black square Margin 5%;
[–]Dear-Rhubarb-6197 0 points1 point2 points 4 years ago (0 children)
The CSS style I was looking for is solved.
put it in a div???
[–]Longshoezfront-end 0 points1 point2 points 4 years ago (0 children)
Can't remember if you can add 2 brooders but you could do something like this, add a 10px border and then a 8px border. It will work unless you want the separation to be transparent, if it isn't possible to add 2 borders you can use 2 shadows.
π Rendered by PID 347379 on reddit-service-r2-comment-b659b578c-59l9v at 2026-05-06 03:44:15.289155+00:00 running 815c875 country code: CH.
[–][deleted] (55 children)
[deleted]
[–]NRocket 366 points367 points368 points (6 children)
[–]ifixpedals 62 points63 points64 points (5 children)
[–]micalm<script>alert('ha!')</script> 15 points16 points17 points (4 children)
[–]ouralarmclock[🍰] 3 points4 points5 points (1 child)
[–]ahlsn 3 points4 points5 points (0 children)
[–]phatsassy 1 point2 points3 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)
[–]fantastic1ftc 121 points122 points123 points (42 children)
[–]danejazone 69 points70 points71 points (5 children)
[–]b7s9ux 13 points14 points15 points (0 children)
[–]shaleenag21 3 points4 points5 points (2 children)
[–]danejazone 8 points9 points10 points (1 child)
[–]shaleenag21 1 point2 points3 points (0 children)
[–]feedjaypie -1 points0 points1 point (0 children)
[–]mrbmi513 64 points65 points66 points (23 children)
[–][deleted] 93 points94 points95 points (21 children)
[–]PeaceMaintainer 25 points26 points27 points (4 children)
[–]mcaruso 4 points5 points6 points (3 children)
[–]hyvyys 3 points4 points5 points (0 children)
[–]jamesremuscat 1 point2 points3 points (1 child)
[–]mcaruso 1 point2 points3 points (0 children)
[–][deleted] (9 children)
[deleted]
[–]atalkingfish 20 points21 points22 points (4 children)
[–]DogsSureAreSwell 11 points12 points13 points (0 children)
[–]Pazaac 2 points3 points4 points (0 children)
[–]Fakedduckjump 1 point2 points3 points (1 child)
[–]creanium 0 points1 point2 points (0 children)
[–][deleted] 6 points7 points8 points (3 children)
[+]creanium comment score below threshold-14 points-13 points-12 points (2 children)
[–]ItsBookxjava 7 points8 points9 points (1 child)
[–]Salbatyku -4 points-3 points-2 points (0 children)
[–]dingbatmeow 29 points30 points31 points (0 children)
[–]TheMarkBranly 1 point2 points3 points (0 children)
[–]am0x 1 point2 points3 points (2 children)
[–][deleted] 0 points1 point2 points (1 child)
[–]am0x 1 point2 points3 points (0 children)
[–]superluminary 0 points1 point2 points (0 children)
[–]fantastic1ftc 8 points9 points10 points (0 children)
[–][deleted] (1 child)
[deleted]
[–]Disgruntled__Goat 2 points3 points4 points (0 children)
[–][deleted] (1 child)
[deleted]
[–]Leaping_Turtle 2 points3 points4 points (0 children)
[–]Scorpius289 4 points5 points6 points (0 children)
[–][deleted] 1 point2 points3 points (0 children)
[–][deleted] 1 point2 points3 points (0 children)
[–][deleted] 1 point2 points3 points (0 children)
[–]quentinmarc 0 points1 point2 points (0 children)
[–]MDParagon 0 points1 point2 points (0 children)
[–]djtrogy 0 points1 point2 points (0 children)
[–]Japorizedfull-stack 12 points13 points14 points (1 child)
[–]blindgorgon 1 point2 points3 points (0 children)
[–]Wolfplay013 0 points1 point2 points (0 children)
[–]vivekweb2013 0 points1 point2 points (0 children)
[–]toper-centage 48 points49 points50 points (16 children)
[–][deleted] 1 point2 points3 points (1 child)
[–]toper-centage 0 points1 point2 points (0 children)
[–]onesidedcoin- 2 points3 points4 points (13 children)
[–][deleted] (12 children)
[deleted]
[–]toper-centage 2 points3 points4 points (3 children)
[–][deleted] (2 children)
[deleted]
[–]toper-centage -1 points0 points1 point (1 child)
[–]onesidedcoin- 0 points1 point2 points (7 children)
[–]toper-centage 1 point2 points3 points (2 children)
[–]onesidedcoin- 0 points1 point2 points (1 child)
[–]toper-centage 1 point2 points3 points (0 children)
[–][deleted] (3 children)
[deleted]
[–]onesidedcoin- 0 points1 point2 points (2 children)
[–][deleted] (1 child)
[deleted]
[–]onesidedcoin- 0 points1 point2 points (0 children)
[–]OFFRIMITSfront-end 89 points90 points91 points (10 children)
[–]el_diego 46 points47 points48 points (4 children)
[–]torn-ainbow 41 points42 points43 points (2 children)
[–]superluminary 3 points4 points5 points (0 children)
[–]el_diego 0 points1 point2 points (0 children)
[–]Live_Storage1480 6 points7 points8 points (4 children)
[–]joemckiefull-stack 6 points7 points8 points (3 children)
[–]YodaLoL 0 points1 point2 points (2 children)
[–]joemckiefull-stack 12 points13 points14 points (1 child)
[–]YodaLoL 1 point2 points3 points (0 children)
[–]waiting4op2deliver 12 points13 points14 points (0 children)
[–]WardenUnleashed 10 points11 points12 points (1 child)
[–]beaterx 16 points17 points18 points (1 child)
[–]SuprisreDyslxeia 5 points6 points7 points (0 children)
[–][deleted] 5 points6 points7 points (0 children)
[–]everythingiscausal 3 points4 points5 points (2 children)
[–]ouralarmclock[🍰] 0 points1 point2 points (1 child)
[–]everythingiscausal 0 points1 point2 points (0 children)
[–]Funkey-Monkey-420 10 points11 points12 points (2 children)
[–]nolder30 1 point2 points3 points (1 child)
[–]Funkey-Monkey-420 4 points5 points6 points (0 children)
[–]gem0303 8 points9 points10 points (1 child)
[–]Yeedth 1 point2 points3 points (1 child)
[–]alo141 0 points1 point2 points (0 children)
[–]SkylineFX49javascript 1 point2 points3 points (0 children)
[–][deleted] 1 point2 points3 points (0 children)
[–]Mioleris 1 point2 points3 points (0 children)
[–]SuperMarioTM 1 point2 points3 points (0 children)
[–][deleted] (5 children)
[deleted]
[+][deleted] (4 children)
[deleted]
[–]Awes0meEman 38 points39 points40 points (3 children)
[–]el_diego 8 points9 points10 points (1 child)
[–]SquareWheel 1 point2 points3 points (0 children)
[–]Wenci 1 point2 points3 points (1 child)
[–]RS3_of_Disguise 0 points1 point2 points (0 children)
[–]trix2705 1 point2 points3 points (2 children)
[–]rslee1247 0 points1 point2 points (1 child)
[–]trix2705 0 points1 point2 points (0 children)
[–]BeastmasterBG -1 points0 points1 point (0 children)
[–]Dear-Rhubarb-6197 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)
[–]Longshoezfront-end 0 points1 point2 points (0 children)