HugoGiraudel
-
How to center image inside a tag ?
a img { display: block; margin: 0 auto; border: none; }
-
is there any jQuery plugin for quick load large images?
You could try AJAX loading to prevent your page from "feeling slow" when there are large images.
-
EMs for media queries and layout
This sums up the whole EM in MQ thing: http://blog.cloudfour.com/the-ems-have-it-proportional-media-queries-ftw/
-
can anyone tell me the best website to learn html. css and js..please...
http://learn.shayhowe.com/html-css/
-
Please help me with some css
@Eduard: Pure CSS way: http://jsfiddle.net/LSqtm/.
-
Please help me with some css
The problem of your solution is that you do an extra HTTP request, which is as you may know, "bad" for performance. You have then 4 solutions to deal with your problem: _ leave it as is; an extra HTTP request is no big deal even if it…
-
Please help me with some css
You can do it with CSS only, but it will not be supported by all browsers. I'd recommand using a data:url encoded image in your stylesheet.
-
Visualising the css impact on a page - where to go from here?
Same as @TheDoc: it looks awesome, and feels awesome. But I don't see any point. Very fun to use anyway. :)
-
Draggable Boxes with CSS3
HTML5 drag'n'drop API is to a point where I'd rather use JavaScript to do such a thing. My two cents. :)
-
codepen || jsfiddle || jsbin
I've done a round-up on code playgrounds a couple of months ago: http://hugogiraudel.com/2012/11/19/css-playgrounds/. Pretty much what Mottie said anyway. Hope it helps.
-
Div inside Head?
What's the connection with the topic anyway?
-
Content cut off in IE10
Line 361, Column 83: An a start tag seen but an element of the same type was already open Line 361, Column 83: End tag a violates nesting rules. Line 361, Column 83: Cannot recover after last error. Any further errors will be ignored. S…
-
make a button move ramndomly on refresh without stacking
It shouldn't be too hard. Run a loop randoming position for the current button, save that position in an array then check to be sure the randomed position isn't used yet. If it's used, rand again until you got an available position (…
-
How can I force email programs to show images send in html email?
Seconded, you can't.
-
CSS speech bubble tool tip develop in Responsive
Why don't you simply use hint.css?
-
Responsive Web Design AFTER Desktop Site Created?
Always doable. But can be very complicated.
-
Change li background colour?
Basically, you have to make your JavaScript add a class to the clicked list item. Then, you target this class with your CSS to do whatever you want. jQuery $('.my-list').on('click', 'li', function() { ... …
-
What Else can I do to improve webpage size/speed?
http://browserdiet.com/ http://developer.yahoo.com/performance/rules.html https://developers.google.com/speed/docs/best-practices/rules_intro
-
Hiding Blank Space
To hide broken image, I guess the easiest way would be to run a curl request to check the header. Depending on the amount of images you got, it can become very heavy.
-
Static Site Generators
I use Jekyll for my own blog, and I have to say I am very happy with it so far. But even if you can absolutely run a static site with Jekyll, I think it is more suited for blog. However I guess it worth a try. Shouldn't be too hard to adapt it…
-
live icons
I don't think you'll find such a gallery of animated icons for free. Not yet at least.
-
Click effect
May it help: http://toddmotto.com/creating-jquery-style-functions-in-javascript-hasclass-addclass-removeclass-toggleclass/
-
Can everything that can be done with JavaScript, also be done with Jquery?
I think he wants to know if there are things jQuery can't do. I'd say yes: Canvas stuff.
-
Where to put paddings/margins
Whenever I can, I try to avoid top and left margin. They are "counter-flow".
-
Not letting me Align="middle"
We do not use HTML attributes for design purpose anymore.
-
How Can i Trigger a CSS Animation With onclick?
Create a class with a CSS animation. Apply/remove it with JavaScript.
-
sass mixin with a variable?
If you ever want a box-shadow mixin able to accept and output multiple shadows, I just made one: @mixin shadow($list) { $res: null; @each $s in $list { $res: $res, unquote($s); } @include experimental(box-shadow, $res, -moz, -webkit, …
-
how to make search box responsive?
I won't speak for the others, but I won't dig into 200 lines of CSS without any syntax highlighter, line number or indentation. Just make a reduced test case with fake content reproducing your issue.
-
using multiple :not selectors not working
input:not([type=button]):not([type=submit]):not([type=number]) This is going to be slow. :)