Labcss.net - An HTML/CSS snippet, allows direct visual manipulation of CSS(labcss.net)
labcss.net
Labcss.net - An HTML/CSS snippet, allows direct visual manipulation of CSS
http://labcss.net
24 comments
First of all, webputty will not always be free.
Second thing is, webputty is a website for CSS manipulation, whereas labcss is a snippet website for creating styled HTML elemments. The process of building the website is the significat advantage of this website, and not only the CSS tweaking.
It supports javascript but the problem is the whole thing is refreshed for every character you type. Example, adding "alert('foo')" will give you an alert for every character you type in the edit box.
Am I doing it wrong or is this supposed to happen? It could probably do with a run button like JSFiddle.
Am I doing it wrong or is this supposed to happen? It could probably do with a run button like JSFiddle.
I would go for a check box to turn the auto update on or off. I love this feature.
Along with the selectors on the left and all the nice sliders, you can try out a lot of stuff really quickly.
Along with the selectors on the left and all the nice sliders, you can try out a lot of stuff really quickly.
I think the checkbox approach would be good.
Nice tool though. Easy to try out quick changes fast.
Nice tool though. Easy to try out quick changes fast.
That's what jsFiddle is for. But I'll add a "live rendering" button to stop this behavior, and give a "Run" button instead as an option.
I thought this was just a JSFiddle/JSbin type site for CSS but then I clicked on the generated HTML and realized what it lets you do. This looks like a great tool for learning CSS but I can't imagine myself pasting in some HTML/CSS and tweaking one thing at a time by pointing and clicking.
I'd still recommend checking out http://jsfiddle.net which lets you keep JS, HTML and CSS separate and makes it easy to include specific versions of JS libraries (handy for testing/reporting bugs). There's also a nice embeddable (iframe) version and it lets you test ajax responses. There's also http://jsbin.com which has similar features.
I'd still recommend checking out http://jsfiddle.net which lets you keep JS, HTML and CSS separate and makes it easy to include specific versions of JS libraries (handy for testing/reporting bugs). There's also a nice embeddable (iframe) version and it lets you test ajax responses. There's also http://jsbin.com which has similar features.
Pretty cool, although I still don't understand how margin-top: 50%; moves the thing so far down ;)
Damn you CSS!
http://www.w3.org/TR/CSS2/box.html#margin-properties
When margin top or bottom is a percentage, it refers to the width, not height, of the containing block. If the parent is 100% width (say, the body), the element will move down 50% of your screen width.
Usually, you don't want this, but you can use it to do some cool tricks with keeping the aspect ratio of an element, like this: http://jsfiddle.net/bgrins/999FP/
When margin top or bottom is a percentage, it refers to the width, not height, of the containing block. If the parent is 100% width (say, the body), the element will move down 50% of your screen width.
Usually, you don't want this, but you can use it to do some cool tricks with keeping the aspect ratio of an element, like this: http://jsfiddle.net/bgrins/999FP/
I have been using the bookmarklets provided by squarefree.com (https://www.squarefree.com/bookmarklets/webdevel.html) for about 8 or 9 years now. Cross browser, works on the current page, dead easy.
I don't get it. What are the advantages of using this instead of WebKit's Developer Tools or FireBug?
Already broken ?
Uncaught SyntaxError: <unknown message reserved_word> in HTMLFiddle.js:87
Uncaught SyntaxError: <unknown message reserved_word> in HTMLFiddle.js:87
It'd be neat if it could grab an existing page. Give it a url and start messing around.
Cool feature, I'll definitely consider it but it's a bit difficult to execute properly because of image paths and remote javascript/CSS files.
The transparent blue overlays you get on hover break scrolling.
Great use of open source resources!
very cool..i like that it updates in real-time unlike jsfiddle where you have to click save.
That aside, what problem do you see this as solving? As in, why would somebody learning CSS by "playing around" (as you say on your About page) want to use LabCSS instead of Firebug or the Chrome debugger?