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?
|
CSS isn't, insofar as I know, Turing complete. But my knowledge of CSS is very limited.
|
|||||||||||||||||
|
|
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):
|
|||||||||||||||||||
|
|
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:
|
|||||||||
|
|
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) |
|||
|
|
|
Go here Disable Javascripot and Play (in Chrome) http://nullus-ordo.rhcloud.com/aterchart-web/content/cleanhtml/css/tictactoe.html |
|||||||
|
|
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. |
|||||||
|
|
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. |
|||
|
|