Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

CSS isn't, insofar as I know, Turing complete. But my knowledge of CSS is very limited.

  • Is CSS Turing complete?
  • Are any of the existing draft or committees considering language features that might enable Turing completeness if it isn't right now?
share|improve this question
9  
It's already been done, if you use ie6. They're called CSS expressions, and consensus is they are horribly broken and dangerous. JS embedded in CSS... – kibibu Mar 23 '10 at 2:23
4  
@Kibibu - Yikes! Please erase that idea from my brain before it folds on itself! – DVK Mar 23 '10 at 2:25
How could CSS possibly be Turing-complete? – SLaks Mar 23 '10 at 2:29
@DVK: you could actually do some cool things with them - particularly with regards to resolution independent layout - that are still tricky or quirky in CSS without resorting to tables. I think if they'd limited it to be strictly a declarative expression language with no side-effects instead of allowing full access to the script engine it would have been better received (and maybe also if webkit had come up with it first) – kibibu Mar 23 '10 at 3:20
2  
@SLaks: Don't underestimate the power of HTML5/CSS3 :) – Niklas B. Feb 28 '12 at 17:10

6 Answers

up vote 49 down vote accepted

You can encode Rule 110 in pure CSS3, so CSS3 is Turing-complete. An implementation is linked to from lambda the ultimate, and included here (JsFiddle version):

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>Rule 110</title>
        <style type="text/css" media="screen">
            body {
                -webkit-animation: bugfix infinite 1s;
                font-family: "Courier New";
                font-size: 28px;
            }
            @-webkit-keyframes bugfix { from { padding: 0; } to { padding: 0; } }

            /* 111 110 101 100 011 010 001 000
0 1 1 0 1 1 1 0 */

            body > input {
                -webkit-appearance: none;
                display: block;
                float: left;
                border-right: 1px solid #ddd;
                border-bottom: 1px solid #ddd;
                padding: 5px 12px;
                margin: 0;
            }
            body > input::before {
                content: "0";
            }

            body > input:nth-of-type(-n+30) { border-top: 1px solid #ddd; }
            body > input:nth-of-type(30n+1) { border-left: 1px solid #ddd; clear: left; }

            body > input::before { content: "0"; }

            body > input:checked::before { content: "1"; }
            body > input:checked { background: #afa !important; }


            input:not(:checked) +
                    *+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+
                    input::before {
                content: "1";
            }
            input:not(:checked) +
                    *+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+
                    input {
                background: #fa0;
            }


            input:checked +
                    *+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+
                    input::before {
                content: "1";
            }
            input:checked +
                    *+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+
                    input {
                background: #fa0;
            }


            input:checked +
                    *+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+
                    input::before {
                content: "1";
            }
            input:checked +
                    *+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+
                    input {
                background: #fa0;
            }

            input:checked + input:checked + input:checked +
                    *+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+
                    input::before {
                content: "0";
            }
            input:checked + input:checked + input:checked +
                    *+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+
                    input {
                background: #fff;
            }

            input:not(:checked) + input:not(:checked) + input:not(:checked) +
                    *+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+
                    input::before {
                content: "0";
            }
            input:not(:checked) + input:not(:checked) + input:not(:checked) +
                    *+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+
                    input {
                background: #fff;
            }

            body > input:nth-child(30n) { display: none !important; }
            body > input:nth-child(30n) + label { display: none !important; }

        </style>
    </head>

    <body>
        <input type="checkbox" />
        <input type="checkbox" />

        /* A total of 900 checkboxes required */

        <input type="checkbox" />
        <input type="checkbox" />

    </body>
</html>
share|improve this answer
Man, those guys are my heroes now. – Niklas B. Feb 28 '12 at 15:18
10  
O_O ... now I can't complain that I didn't learn something interesting today. – iDontKnowBetter May 16 '12 at 21:07
2  
Added a Jsfiddle link for great justice. Oh my god man. – Camilo Martin Jun 26 '12 at 1:27
21  
BRILLIANT!. However, I don't think this qualifies as turing complete. CSS is only able to calculate 1 iteration of the state-machine. Your example relies on the human repeatedly clicking all the orange boxes in order to feed the "output" (pixels) back into the input (page state) and "pump" the state machine. Because there is no programmatic way to use the output of CSS as input, it can't be used to calculate any multi-step loops, the hallmark of turing-complete languages. – Dave Dopson Nov 28 '12 at 23:41
1  
For all these that are too lazy to click (more than once) JsFiddle. – derenio Feb 27 at 17:32

As per this article, it's not. The article also argues that it's not a good idea to make it one.

To quote from one of the comments:

So, I do not believe that CSS is turing complete. There is no capability to define a function in CSS. In order for a system to be turing-complete it has to be possible to write an interpreter: a function that interprets expressions that denote programs to execute. CSS has no variables that are directly accessible to the user; so you cannot even model the structure that represents the program to be interpreted in CSS.

share|improve this answer
2  
CSS isn't executable in any way. The person who wrote the quoted comment doesn't seem to understand that. :-\ – Ryan Prior Mar 23 '10 at 3:01
10  
CSS is a set of instructions to a processor (layout engine). What's so not "executable" about it? – DVK Mar 23 '10 at 3:26

Turing-completeness is not only about "defining functions" or "have ifs/loops/etc". For example, Haskell doesn't have "loop", lambda-calculus don't have "ifs", etc...

For example, this site: http://experthuman.com/programming-with-nothing. The author uses Ruby and create a "FizzBuzz" program with only closures (no strings, numbers, or anything like that)...

There are examples when people compute some arithmetical functions on Scala using only the type system

So, yes, in my opinion, CSS3+HTML is turing-complete (even if you can't exactly do any real computation with then without becoming crazy)

share|improve this answer

Go here

Disable Javascripot and Play (in Chrome) http://nullus-ordo.rhcloud.com/aterchart-web/content/cleanhtml/css/tictactoe.html

share|improve this answer
That's a very nice demo! – Adam Davis Apr 25 at 18:39
1  
Tick Tac Toe can be encoded in a finite-state machine which is not Turing complete, so this does not show CSS to be Turing complete. – Craig yesterday

CSS is not a programming language, so the question of turing-completeness is a meaningless one. If programming extensions are added to CSS such as was the case in IE6 then that new synthesis is a whole different thing.

CSS is merely a description of styles; it does not have any logic, and its structure is flat.

share|improve this answer
Also (IIRC), there is some ambiguity about which styles take precedence when multiple conflicting (duplicate) styles are used. And then there is the slightly different ways that different browsers implement/interpret markup styles to deal with. – Loadmaster Mar 23 '10 at 2:40
13  
"CSS is not a programming language, so the question of turing-completeness is a meaningless one." Tautological sentences are tautological. – Adam Davis Mar 23 '10 at 13:10

CSS doesn't have conditionals or branching (lacks the if statement), so it can't be a Turing-complete language.

CSS is just a presentation extension to HTML and markup languages can't be Turing-complete.

http://en.wikipedia.org/wiki/Turing_completeness

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.