9

Is it possible to change the background color on button click; of the entire document, using only CSS and HTML5?

(e.g.: it's trivial in JavaScript)

8
  • css-tricks.com/almanac/properties/t/transition Commented Oct 8, 2013 at 23:38
  • 1
    stackoverflow.com/questions/12574668/… Not exactly your question, but the answer (which is no - unfortunately) is worth a read. Commented Oct 8, 2013 at 23:43
  • 1
    No, it's not possible due to the fact that there is't a 'parent' selector in CSS. You can do something like this thought: jsfiddle.net/6mTjF/1 (a quick demo I just did to show how pseudo classes can be combined with + to add interactive effects) Commented Oct 8, 2013 at 23:45
  • 1
    Building on @Joe's comment. jsfiddle.net/bhlaird/6mTjF/2. I added some evil absolute positioning and faked it. Commented Oct 8, 2013 at 23:50
  • 4
    @BarbaraLaird - nice! I've built upon yours to make it look like it's a click event: jsfiddle.net/6mTjF/3 - it uses <label> and a hidden checkbox. Commented Oct 8, 2013 at 23:54

6 Answers 6

8

Based on the fiddle I posted in the comments I've modified it very slightly to use the Bootstrap button CSS.

Just include Bootstrap's CSS file then use the code below.

HTML

<label for="check" class="btn btn-default">Toggle background colour</label>
<input type="checkbox" id="check" />
<div></div>

CSS

div {
    width: 100%;
    height: 100%;
    background: #5CB85C;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
label.btn {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2; 
}
input[type="checkbox"]{
    display: none;
}
input[type="checkbox"]:checked + div{
    background: #5BC0DE;
}

This uses the adjacent sibling selector.

Here it is working: http://jsfiddle.net/eYgdm/ (I've added *-user-select: none; to prevent selection of the label text but it's not required for the label to work)

Browser support

Chrome, Firefox [Desktop & Mobile] (Gecko) ≥ 1.0, Internet Explorer ≥ 7, Opera ≥ 9 and Safari ≥ 3 References: Attribute selectors and Adjacent sibling selectors

Sign up to request clarification or add additional context in comments.

1 Comment

How do I get this to work with multiple buttons each toggling different colors? - jsfiddle.net/eYgdm/1
3

You could do something like this -- using the adjacent css selector :

<button class="btn">button</button>
<div class="content"></div>

btn:active + .content{
    background: blue;
}

http://jsfiddle.net/JeffreyTaylor/g47Uh/

3 Comments

Is there any way to persist it as blue using just CSS, or is what @frenchie said 100% without exception?
@AT: there's :active, :hover, :checked ... but there's no :clicked in CSS. The closest you'll get it what Barbara Laird did jsfiddle.net/6mTjF/3
Thanks for that link; hard to bind it to a button class (e.g.: from Twitter Bootstrap)
1

No, there's no concept of "click then do something" in CSS.

Comments

0

Unfortunately, there's no backtracing in css rules; for a css selecter, there's no way to climb up an element's ancestors.

Comments

0

You can (ab?)use the :target selector. This probably won't work in older browsers. Here's a super simple example I made that toggles the background when the link is clicked.

The concept is to apply CSS styling to targeted elements. In the code below, clicking the link will target the body's ID, which applies the style in body:target (changing the background color).

<html>
    <head>
        <style>
            body { background-color:#333; }
            body:target { background-color:#fff; }
        </style>
    </head>
    <body id="myBody">
        <a href="#myBody">Click</a>
    </body>
</html>

JSfiddle

Comments

0

There is a way to do it:

.cc2:focus {
background-color: #19A3FF;}

The :focus basically means when you click on the element with the class cc2 it will turn it's background blue :) Hope that helps.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.