Any chance for some invites? I'd love to try.
We'll be reviewing comments here throughout the day and if we can easily find your email you might receive an early invite!
Divshot
31–40 of 113 posts
Re: Divshot
#32Re: Divshot
#33Got any sample output? I'd love to compare notes on the HTML your tool creates. I'm interested in this type of app, as I've built a design prototyping tool called Edit Room, that also creates production-ready HTML and CSS from visual design tools. http://www.edit-room.com/ Good luck!
Re: Divshot
#34Why is there such a strong focus on "responsive" CSS? It has never made much sense to me, because my desktop will never turn into a tablet, and my tablet will never turn into a smartphone. It seems as though creating a better server-side abstraction that lets me produce different markup that shares much, but not all, of the CSS would be more effective from a development time perspective. If you use responsive CSS, wh…
Re: Divshot
#35Re: Divshot
#36Re: Divshot
#37Why is there such a strong focus on "responsive" CSS? It has never made much sense to me, because my desktop will never turn into a tablet, and my tablet will never turn into a smartphone. It seems as though creating a better server-side abstraction that lets me produce different markup that shares much, but not all, of the CSS would be more effective from a development time perspective. If you use responsive CSS, wh…
Responsive is about responding to container characteristics, instead of relying on the assumption that a certain known device has certain characteristics. Even with responsive, the rabbit hole goes waaay down, but at least you're avoiding the ghetto effect of "supporting" a set list of circumstances.
Re: Divshot
#38Why is there such a strong focus on "responsive" CSS? It has never made much sense to me, because my desktop will never turn into a tablet, and my tablet will never turn into a smartphone. It seems as though creating a better server-side abstraction that lets me produce different markup that shares much, but not all, of the CSS would be more effective from a development time perspective. If you use responsive CSS, wh…
* Resizing your browser window.
* Changing font-size for accessibility (Ctrl+, Ctrl-)
* Moving your browser between multiple screens
If responsive was server-side, each of these scenarios would cause a page reload in order to accomodate the adjusted layout.
Responsive design doesn't just mean CSS media queries. It more commonly means using floating div/ul instead of tables for layout.
Re: Divshot
#39I am the founder of Jetstrap (http://jetstrap.com/) and we've built an interface builder for Bootstrap as well, so we are definitely in the same space.