Chat Artifacts Gallery Guilds Search Wiki Login Register

Welcome, Guest. Please login or register. - Thinking of joining the forum??
April 21, 2026 - @467.22 (what is this?)
Activity rating: Three Stars Posts & Arts: 27/1k.beats Random | Recent Posts | Guild Recents
News: There's a great big indie web tomorrow! :smile: Guild Events: There are no events!

+  MelonLand Forum
|-+  Life & The Web
| |-+  ✁ ∙ Web Crafting
| | |-+  Are you a floater or a flexer?


« previous next »
Pages: 1 [2] Print
Poll
Question: How do you arrange items?
I mostly float!   -8 (30.8%)
I mostly flex!   -12 (46.2%)
I do 50/50!   -4 (15.4%)
I do not align items >:D   -2 (7.7%)
Total Members Voted: 26

Author Topic: Are you a floater or a flexer?  (Read 1345 times)
virtualpet2001
Full Member ⚓︎
***
View Profile WWWArt


getting hard to be someone but it all works out
⛺︎ My Room

Guild Memberships:
Artifacts:
Joined 2026!Water Creature
« Reply #15 on: March 11, 2026 @660.44 »

I can't remember the exact reason why but float just wouldnt work on my website so I did end up using flexboxes for putting my things side-by-side. i can second that flexboxfroggy is nice for visualizing how it all works ... even though i always forget the exact names of the css tags...lol
Logged


lakes
Sr. Member ⚓︎
****
View Profile WWW


⛺︎ My Room
Matrix: Chat!
XMPP: Chat!

Guild Memberships:
Artifacts:
Joined 2025!
« Reply #16 on: March 12, 2026 @799.92 »

I prefer the super secret third option of using a grid layout.
Code
.container {
  display: grid;
  grid-template-columns: auto auto auto;
    padding: 10px;
}
@media only screen and (max-width: 600px) {
  body {background-repeat: repeat;}
  .item1 {grid-area: 1 / span 6;}
  .item2 {grid-area: 2 / span 6;}
  .item3 {grid-area: 3 / span 6;}
  .item4 {grid-area: 4 / span 6;}
  .item5 {grid-area: 5 / span 6;}
  .item6 {grid-area: 6 / span 6;}
}
Logged




Grillsen
Newbie ⚓︎
*
View Profile WWW

⛺︎ My Room

Guild Memberships:
Artifacts:
Joined 2026!
« Reply #17 on: March 13, 2026 @64.65 »

I never understood how flexbox worked and I tried grids but they turned out to be more trouble then they were worth. I am old school and use float or text-align to align things left or right. Margin:auto or text-align:center centers stuff just fine too. I used to use the old align html tags, but those are now deprecated apparently so I try to avoid them now in order to keep things up to date.

I am also a big advocate for tables. Tables are extremely versatile and easy to use once you understand them. Sure we have all kinds of fancy css now a days which is better for layouts, but I have always used tables and they still work great.
Logged
lakes
Sr. Member ⚓︎
****
View Profile WWW


⛺︎ My Room
Matrix: Chat!
XMPP: Chat!

Guild Memberships:
Artifacts:
Joined 2025!
« Reply #18 on: March 13, 2026 @86.33 »

I am old school and use float or text-align to align things left or right. Margin:auto or text-align:center centers stuff just fine too. I used to use the old align html tags, but those are now deprecated apparently so I try to avoid them now in order to keep things up to date.

This is how I find out that "text-align" and "margin" are what's meant by "float."
But yeah I can understand that because I only use grid for my art & about pages. Otherwise I just use "margin: auto/0 15 em/etc." Both methods are much more intuitive for me. But I never tried tables. I do follow someone on neocities who swears by it though.
« Last Edit: April 04, 2026 @75.89 by lakes » Logged




Slix
Full Member ⚓︎
***
View Profile WWW


⛺︎ My Room
RSS: RSS

Artifacts:
#1 Poliwag Fan !poliwag masterJoined 2024!
« Reply #19 on: March 13, 2026 @623.90 »

For my site I actually use fixed absolute positioning and margin widths for the center content div and the menu bars on the sides.  :omg:

I do have some of them automatically change based on screen size using the @media max-width CSS now, though. For a part of my site I just have a separate mobile and desktop version and swap between them based on the user-agent when the site first loads for the user.

This is mainly because I styled it many years ago before all the fancy HTML/CSS stuff existed and I've been too lazy to change it when it works just fine on nearly any browser that's been made in the last 15 years.
« Last Edit: March 13, 2026 @626.15 by Slix » Logged

candycanearter07
Hero Member ⚓︎
*****
View Profile WWWArt


i like slimes
⛺︎ My Room
SpaceHey: Friend Me!
StatusCafe: candycanearter
Itch.io: My Games
RSS: RSS

Guild Memberships:
Artifacts:
it's tbhchansey!Goomy, I Choose You!Suck At Something September - Did It!uh oh! a pigeon got in!Artsy Candy Cane
« Reply #20 on: March 14, 2026 @241.52 »

I prefer the super secret third option of using a grid layout.
Code
.container {
  display: grid;
  grid-template-columns: auto auto auto;
    padding: 10px;
}
@media only screen and (max-width: 600px) {
  body {background-repeat: repeat;}
  .item1 {grid-area: 1 / span 6;}
  .item2 {grid-area: 2 / span 6;}
  .item3 {grid-area: 3 / span 6;}
  .item4 {grid-area: 4 / span 6;}
  .item5 {grid-area: 5 / span 6;}
  .item6 {grid-area: 6 / span 6;}
}

In my opinion, grids kinda end up being too rigid to really work with, since it forces you to put everything in divs 3 layers down and it just feels completely off to me. I used to use grid in my old site but the jank involved is part of the reason why I jumped ship and rewrote everything on a seperate host.
Logged

new to oldnet be nice





Artifact Swap: charry zardshoeDS Lover (replacement)Ball Creaturecards all the way down
Finnick the Aquacat
Newbie ⚓︎
*
View Profile WWW


⛺︎ My Room
iMood: FinnicktheAquacat

Guild Memberships:
Artifacts:
Joined 2026!
« Reply #21 on: April 04, 2026 @75.23 »

secret third option: grids lol
both floats and flexboxes for me personally have been too janky for me to get them to work well on my site, grids just fulfill my layout design ideas much better and now that I understand how to use them I'm gonna be fixing up my site with them soon
Logged


Artifact Swap: Polyamorous
Pages: 1 [2] Print 
« previous next »
 

Melonking.Net © Always and ever was! SMF 2.0.19 | SMF © 2021 | Privacy Notice | ~ Send Feedback ~ Forum Guide | Rules | RSS | WAP | Mobile


MelonLand Badges and Other Melon Sites!

MelonLand Project! Visit the MelonLand Forum! Support the Forum
Visit Melonking.Net! Visit the Gif Gallery! Pixel Sea TamaNOTchi

MelonLand Nav

@000

Want to Login or Join ?

Minecraft: Online
Join: craft.melonking.net