ga-wdi-exercises / project1

[project] GA- Project 1
3 stars 75 forks source link

css fail #45

Closed jkoul closed 9 years ago

jkoul commented 9 years ago

Hello!

I'm trying to set up a blackjack game board in an appealing way, and the headers of the "dealer" and "player" areas are showing up at the bottom of their boxes. I can't figure out why.

Here's my CSS code for the areas:

.game { vertical-align: top; text-align: center; position: relative; height: 220px; width: 927px; display: inline-flex; } Also, the action buttons don't seem to be responding to clicks as they should. HTML:

CSS: .gamebuttons { text-align: center; padding: 10px; margin: 15px; size: 10em; }

Help!

jshawl commented 9 years ago

Can you use the inspector to narrow down your issue?

I have a hunch the display:inline-flex is causing issues, but the inspector should help!

jkoul commented 9 years ago

Got it, thanks!!! I have many other issues, but at least this one is out of the way.