user3626098
user3626098

Reputation:

How to apply properties to two divs in CSS

Ok, so obviously I know how but for some reason this code is not doing it.

I need the left and right div to have an inset box shadow.

* {
  Margin: 0;
  Padding: 0;
}

.Wrapper {
  Position: Fixed;
  Background: RGB(128,128,128);
  Width: 1500PX;
  Height: 500PX;
  Top: Calc(50% - 250PX);
  Right: Calc(50% - 750PX);
}

.Left, .Center, .Right {
  Display: Inline-Block;
  Width: 500PX;
  Height: 500PX;
}

.Left, .Right {
  Box-Shadow: Inset 0 0 0 50PX RGB(256,256,256);
}
<DIV CLASS="Wrapper">
  <DIV CLASS="Left"></DIV>
  <DIV CLASS="Center"></DIV>
  <DIV CLASS="Right"></DIV>
</DIV>

Upvotes: 0

Views: 41

Answers (1)

norcal johnny
norcal johnny

Reputation: 2115

As mentioned you should really get away from Capitalizing and maybe consider using a class shadow if you plan on using it on more than just 1 div.

        div { width:100px; height:100px}
        .shadow { box-shadow: inset 0 0 10px #000000; }
        <DIV CLASS="Wrapper">
          <DIV CLASS="Left shadow">left</DIV>
          <DIV CLASS="Center">center</DIV>
          <DIV CLASS="Right shadow">right</DIV>
        </DIV>

Upvotes: 1

Related Questions