Welcome Guest, Not a member yet? Register   Sign In
CSS questions
#1
Question 

Hi,

I am new to PHP and CodeIgniter, I have quite a lot to learn  Smile.

I started using CSS, but I fell I can make better use. Here is what I am talking about:

Code:
           .row_col1{
              background-color: red;
              text-align: center;
              width: 200px;
              font-family: verdana;              
              color: black;
              font-size: xx-large;
              font-weight: bold;
           }

           .row_col2{
              background-color: yellow;
              text-align: center;
              width: 200px;
              font-family: verdana;
              color: black;
              font-size: xx-large;
              font-weight: bold;                
           }

           .row_col3{
               background-color: yellowgreen;
               text-align: center;
               width: 200px;
               font-family: verdana;
               color: black;
               font-size: xx-large;
               font-weight: bold;
           }  

As you can see, the only difference between the three is the color.

I would like to create only one style and add the color when I add rows, but that doesn't work unfortunately. I tried something like this:
Code:
$row1 = [
  'data' => 'Some text',
  'class' => 'row_without_color',
  'background-color' => 'yellow'
]

The generated code was like this:

... <class = 'row_without_color' background-color = yellow ...

Thing is the background-color was not applied.

What am I doing wrong ?

Thanks
Reply


Messages In This Thread
CSS questions - by planteg - 08-30-2016, 12:49 PM
RE: CSS questions - by StratoKyke - 08-30-2016, 04:52 PM
RE: CSS questions - by Joel Catantan - 08-30-2016, 05:13 PM
RE: CSS questions - by Wouter60 - 08-30-2016, 10:30 PM
RE: CSS questions - by planteg - 08-31-2016, 06:32 AM
RE: CSS questions - by Joel Catantan - 09-05-2016, 11:47 PM
RE: CSS questions - by Wouter60 - 08-31-2016, 07:18 AM
RE: CSS questions - by planteg - 08-31-2016, 07:46 AM
RE: CSS questions - by Wouter60 - 08-31-2016, 08:06 AM



Theme © iAndrew 2016 - Forum software by © MyBB