Displaying 15 results from an estimated 15 matches for "300px".
Did you mean:
100px
2011 Sep 22
1
computation of header ids
...header_classred_1">My header </h1>'
I would have expected:
u'<h1 class="red" id="my_header">My header </h1>'
An other example:
>>> markdown.markdown("# Test {@style=position: absolute; top: 100px;
left: 455px; width: 300px; height: 250px;}
{@about=http://video.constantvzw.org/Ellentriek8/softsensor_pure_d.ogv}", ['headerid'])
u'<h1
about="http://video.constantvzw.org/Ellentriek8/softsensor_pure_d.ogv"
id="test_styleposition_absolute_top_100px_left_455px_width_300px_height_25...
2006 Jun 07
2
display two columns using fixed width divs
Hi.
I want to display some related information in two columns. Originally
I wanted to use frames and googling led me to
http://lists.rubyonrails.org/pipermail/rails/2006-May/037972.html
which suggest divs instead.
I modified my code to this:
<body>
<div style=''width: 300px; overflow: scroll''>
<%= render :partial => "col1" %>
</div>
<div style=''width: 300px; overflow: scroll''>
<%= render :partial => "col2" %>
</div>
</body>
But col2 is placed below col1, not next to each...
2006 Aug 13
3
why do text_fields appear smaller in IE than other browsers?
In testing my application on different browsers, I''ve noticed a few
differences:-
a password_field :size=>20 is smaller than a text_field :size=>20 on
Internet Explorer. They are the same on Firefox and Safari. makes my
login box look silly. the same can be seen on the login screen for this
forum. the password box is a little shorter on IE6.
more annoying however is I have
2009 Mar 14
3
[OT] two question about color space.
...ight spectrum (380nm~780nm) with color
corresponding to the specific wavelength. However, I don't find a
function that could do this.
Another question, it's possible to plot a color space chromaticity
diagram like this:
http://upload.wikimedia.org/wikipedia/commons/thumb/0/02/CIExy1931.svg/300px-CIExy1931.svg.png
Thanks in advance!
Jinsong
2005 Sep 29
14
Draggables and overflow div''s revisited
...9;'>[*] Draggable Element</div>
<%= draggable_element "drag1", :ghosting => true,
:revert => true %>
</div>
.item_list_scroll {
|
height: 200px;
|
width: 300px;
|
overflow: auto;
|
background-color: #ccc;
|
border: solid 1px #666;
|
padding: 8px;...
2005 Jun 29
0
Effects flicker in firefox when called with setTimeout
...ript language="javascript" type="text/javascript">
function hide()
{
new Effect2.Fade("box");
}
window.onload = function()
{
setTimeout("hide()",2000);
}
</script>
</head>
<body>
<div id="box" style="width: 300px; margin: 10px; padding: 30px;
border: 1px solid red; background: #000;">
<div style="background: #ccc; padding: 10px;"></div>
</div>
</body>
</html>
2008 Jul 31
8
Facebook Connect
Is anyone planning on using Facebook Connect? I have the
implementation that I think covers the user registration. I''m going to
work on the UI stuff as well but would love to get some feedback on it.
Mike
--
Mike Mangino
http://www.elevatedrails.com
2006 Apr 11
1
IE Sortable Style Problem
...ascript" src="js/prototype.js"></script><script type="text/javascript" language="javascript" src="js/scriptaculous.js"></script><style type="text/css">div#divContainer { border: 1px solid #000000; width: 400px; height:300px; overflow: scroll;}
div#divContainer div { border: 1px solid #000000; margin: 5px; padding: 2px; cursor: move;}</style><script type="text/javascript" language="javascript">function unPos() { for (var i = 1; i <=6;i++) { $(''div_''+i).style.positio...
2009 Dec 13
0
r65 committed - Use the GeoCommons addOverlay method
...,7 @@
</style>
</head>
<body>
- <div style="height: 400px; width: 800px; margin: 20px;">
+ <div style="height: 400px; width: 1000px; margin: 20px;">
<div id="map" style="position: relative; width: 500px; height:
300px;"></div>
<div style="margin-top: 20px;">
2015 Aug 24
0
Regalamos 1.000 vuelos a Canarias
...18px !important;
}
} @media only screen and (max-width: 480px){
/*
@tab Mobile Styles
@section template width
@tip Make the template fluid for portrait or landscape view adaptability.
If a fluid layout doesn't work for you, set the width to 300px instead.
*/
table[id=templateContainer],table[id=templatePreheader],table[id=templateHeader],table[id=templateBody],table[id=templateFooter]{
/*@tab Mobile Styles
@section template width
@tip Make the template fluid for portrait or landscape view adap...
2006 Jun 26
8
[Semi OT] BlindDown and a floated div
I am using the drop shadow technique described at
http://www.1976design.com/blog/archive/2003/11/14/shadows/ to give
several of my divs drop shadows. That part works fine.
What doesn''t work so well is when I try to BlindDown a div in Firefox
and it ends up ignoring the content below it and just overlapping it.
In IE this problem does not occur. In Firefox the overlapping does
2004 Aug 06
0
toner cartridges
...font></center>
</td>
</tr>
<tr>
<td>
<center><font color="#000099"><font size=+1>Item #2</font></font></center>
</td>
<td>
<center><font color="#000099"><font size=+1>LaserWriter 300PX/
320-4L,+4ML</font></font></center>
</td>
<td>
<center><font color="#000099"><font size=+1>M2045GA</font></font></center>
</td>
<td>
<center><font color="#000099"><font size=+1>$54...
2002 Jul 12
1
toner cartridges
...font></center>
</td>
</tr>
<tr>
<td>
<center><font color="#000099"><font size=+1>Item #2</font></font></center>
</td>
<td>
<center><font color="#000099"><font size=+1>LaserWriter 300PX/
320-4L,+4ML</font></font></center>
</td>
<td>
<center><font color="#000099"><font size=+1>M2045GA</font></font></center>
</td>
<td>
<center><font color="#000099"><font size=+1>$54...
2008 Jun 15
11
[PATCH] helper to create fb css stylized table
I attached a rails helper implementation of the fb_table described here:
http://wiki.developers.facebook.com/index.php/Facebook_Styles
I included testing and comments. I hope you find it useful.
Curiously, it''s really a small extension of FBML.
Richard
-------------- next part --------------
Index: test/rails_integration_test.rb
2007 Jun 09
23
hoverclass on droppable zone
Hi guys,
I''m trying to make a drag''n''drop portal using sortable element. I
would like to apply the "hoverclass" option only on the droppable zone
instead of the column border.
Any idea a about the solution?
Thanks for any help,
Sabri
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups