I'm pretty good at it, I guess.
Offline
I'm good at it, but I don't particularly like how every browser has its own specs. Seriously, why can't these guys actually agree on something once in a while?
Offline
Hardmath123 wrote:
I'm good at it, but I don't particularly like how every browser has its own specs. Seriously, why can't these guys actually agree on something once in a while?
+1
Offline
I like it. It could have a more xml like syntax though
Offline
I think I'm decent at them, but I really wish that the browsers would support the same features. It's a little annoying when you work hard on styling your website and then you look on another browser and it looks horrible.
Offline
transparent wrote:
I think I'm decent at them, but I really wish that the browsers would support the same features. It's a little annoying when you work hard on styling your website and then you look on another browser and it looks horrible.
You are really good at CSS from what I've seen.
Offline
Why, thank you.
Offline
transparent wrote:
I think I'm decent at them, but I really wish that the browsers would support the same features. It's a little annoying when you work hard on styling your website and then you look on another browser and it looks horrible.
IE 6.
Offline
Yes, and sometimes even in Firefox when I use webkit properties.
Offline
Another thing I'd like would be dynamic-er styling:
div.myOtherColumn { height:100%; width:100px; } div.myColumn { height:100%; width:-dynamic[(this.parentNode.width)-100]px; }
(stupid example, but you get the point)
Offline
Hardmath123 wrote:
Another thing I'd like would be dynamic-er styling:
Code:
div.myOtherColumn { height:100%; width:100px; } div.myColumn { height:100%; width:-dynamic[(this.parentNode.width)-100]px; }(stupid example, but you get the point)
That would be /incredibly/ useful.
It's already possible with Javascript, but behaviour shouldn't be mixed with presentation.
Offline
Yeah that is possible with Javascript. Personally, I don't think that CSS should use that though, as helpful as it is, because it's really not a 'language' itself. Just a simple styling system.
Perhaps if they used it along with a percentage. Like 100% -100px or something.
Offline
I will not name my firstborn son "CSS".
Offline
That...is a good thing!
Offline
How good I am at CSS?
On a scale of 1 to 10, 10 being YEAH SUPA AWESOME BRAH.
6.3
What do you guys think?
Offline
That's pretty good
Offline
Yeah.
I wasn't sure because sometimes I need a little help, but I know what a lot of the things mean.
Offline
I look at references for most coding, but i know what i want
Offline
transparent wrote:
Yeah that is possible with Javascript. Personally, I don't think that CSS should use that though, as helpful as it is, because it's really not a 'language' itself. Just a simple styling system.
But my way is so much cleaner than either using JS or figuring out some weird unreliable float fix... Besides, it should only be functional code, so you shouldn't be able to give instructions.
EDIT: Check this out!
<!DOCTYPE html> <html> <head> <style type="text/css"> body { background-color:#DDDDDD; } h1 { -webkit-animation-duration: 10s; -webkit-animation-name: slidein; -webkit-animation-iteration-count:infinite; background-color:#EEEEEE; border-style:dashed; border-color:#DDDDDD; border-radius:10px; font-family:trebuchet ms; color:#DDDDDD; box-shadow:inset 0px 0px 10px #DDDDDD; } @-webkit-keyframes slidein { from { -webkit-transform:rotateX(0deg); } to { -webkit-transform:rotateX(360deg); } } </style> </head> <body> <h1>123</h1> </body> </html>
Last edited by Hardmath123 (2012-10-08 09:33:44)
Offline
transparent wrote:
Yeah that is possible with Javascript. Personally, I don't think that CSS should use that though, as helpful as it is, because it's really not a 'language' itself. Just a simple styling system.
Perhaps if they used it along with a percentage. Like 100% -100px or something.
you can already do that though with calc()
Offline
veggieman001 wrote:
transparent wrote:
Yeah that is possible with Javascript. Personally, I don't think that CSS should use that though, as helpful as it is, because it's really not a 'language' itself. Just a simple styling system.
Perhaps if they used it along with a percentage. Like 100% -100px or something.you can already do that though with calc()
That would be with javascript, would it not?
I was talking about adding that to CSS.
Offline
transparent wrote:
veggieman001 wrote:
transparent wrote:
Yeah that is possible with Javascript. Personally, I don't think that CSS should use that though, as helpful as it is, because it's really not a 'language' itself. Just a simple styling system.
Perhaps if they used it along with a percentage. Like 100% -100px or something.you can already do that though with calc()
That would be with javascript, would it not?
I was talking about adding that to CSS.
calc() is css -________-
Offline