100% height, safe to use?

Is "height:100%" on divs or tables pretty much safe to use at this point?
I know it wasn't, a few years ago... and required a bunch of hacks to work universally.

JTANNA wrote:
No because my ESP is down today because we are still in a holiday mode (I am based in chilly London).  I spent just 5 minutes on that code and now I have spent another 3 minutes to modify it slightly so use this CSS:
    height: 100%;
body, html {
    height: 100%;
body {
    width: 100%;
    margin: auto;
    text-align: center;
#wrapper {
    width: 980px;
    height: 100%;
    position: relative;
    display: table;
    margin: 0 auto;
    text-align: left;
    overflow: scroll;
#left {
    display: table-cell;
    width: 300px;
    background-color: gray;
    vertical-align: middle;
#images {
    display: table-cell;
    background-color: silver;
    max-width: 680px;
    text-align: left;
    vertical-align: middle;
Having observed the code more closely, I see that this does not align the text with the image if there is more than one image. It treats Text#1, Image#1, Text#2 and Image#2 as 4 distinct elements. In other words, if the amount of text on the first row is minimal, the text on the next row will be too high in relation to the image on that row.
The only solution I see to this problem, is taking id="left" out of the flow via absolute postitioning, and using it only as a visual aid (to see the white column), and then superimposing stacked divs that would each contain 1 text and 1 image.
i.e.:
<div id="wrapper">
  <div id="left></div>  <-- just a 100% tall white div, for appearance
  <div>
    <div>Text goes here.</div>
    <img src="image">
  </div>
  <div>
    <div>Text goes here.</div>
    <img src="image">
  </div>
</div>
So the text will always be correctly paired with its related image.
Feel free to correct me if I err, here.

Similar Messages

  • How do I repeat image 100% height in a box within the template

    I have built a new template that already has a background image behind the content area.  This background image is 100% width and height.  Now I have made the header area, the content area and the footer area.  What I am needing some help with is:  I want to have a box behind the content area that continues into the footer.  In that box I want a repeated background pattern that continues regardless of the amount of content in the content area.  I know how to do this using tables and code, but I can't seem to figure it out in MUSE.  I have added the box, added the repeated verticle image, but it won't expand downward 100% height.  It just stops at the height of the box that was built in MUSE and then the repeated background stops too...  Can someone explain to me how to do this properly?  It's all I have left and then this site template is complete.
    Tom

    Can you elaborate please.  I have built a template (or master page) with this box in it and it starts just below the line of the header and extends to the bottom of the page. It has a repeated verticle image inside it.  What happens though is that I build a page and assign the master to it, add a content box into the page for text and images.  If the content extends downward past the original size of the master page box height, the box will not extend itself with the height needed for the content.  IE:  if the box is 600px high in the master and then the content is 1000 px high, the box will not expand to the 1000 px height and instead stop at the 600 px height.
    Is there a tutorial with this in it somewhere?  I have build numerous MUSE sites both small and large and have yet to do this repeatable background pattern behind just the content area separate from the background image itself.
    Thanks for your help.
    Tom

  • How to make an Image in Adobe Muse  100% height ?

    100% width, it's ok; but I don't find how to make a 100% height image (wich follows my browser height)?
    I work with adobe Muse CC 2014
    thanks !

    You can use the image as browser fill and then set the position of image such that it remains to its position. This can be used as a workaround for using image as browser height.
    Thanks,
    Sanjit

  • Is it safe to use the MBP in closed clamshell mode?

    I've connected my MBP to my LCD TV and started to use it as my desktop.
    I'm deactivating the main display of the MBP by putting it into sleep mode and moving my mouse, so it wakes the computer up and shows image only in the TV, keeping the main display turned off.
    I'm constantly monitoring the temperatures of the MBP with iStat Menus. It seems that the temperature is always the same, no matter if the main display lid is open or closed.
    So, based on these 2 articles:
    http://support.apple.com/kb/HT3131
    http://support.apple.com/kb/HT1778
    Is it really safe to use the MBP with the display lid closed?
    If I decide to run a heavy load application (like a game) and the MBP starts to get warm, would it damage the display, because it is too close to the body of the MBP?

    Yes it's perfectly safe and designed to be used that way, 90% of the time this one's used in a similar configuration. The only time the fans come on 100% is when I watch Flash-based items from YouTube or similar. I've never run it for any extended length of time with the fans at maximum I must admit but as long as the air flow is good there shouldn't be any problem.

  • Create an image with 100% height?

    Hi,
    I am working on a project and require an image to stretch to
    the full height of the table cell.
    The width will be fixed at 40 pixels, but I require the
    height to always be 100% of the cell.
    I have tried simply adding the height tag as 100%, but this
    proves inconsistent in various browsers.Is there a way in which I
    can achieve this, so it will work consistently on all browsers and
    platforms?
    Many thanks

    Make it a background image and let it tile to fill the space.
    Or just use
    an HTML color background.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "TangentGraphic" <[email protected]> wrote
    in message
    news:euftp1$d1s$[email protected]..
    > Sorry in delayed response - Adobe server down...
    >
    > The image is a flat coloured gif - image distorsion is
    not an issue. Are
    > you aware of my best way to achieve its 100% height?
    >
    > Thanks

  • 100% height not working in Internet Explorer

    I'm using the following CSS code to have a verticle div tag
    stretch down the left side:
    }#leftbar {
    background-color: #2E4A72;
    height: 100%;
    width: 180px;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #FFFFFF;
    position: absolute;
    z-index: 1;
    overflow: hidden;
    top: 0px;
    visibility: visible;
    This works in Firefox and Safari, but not in IE.
    Please give me some GREAT advice, since I'm definitely not
    great at CSS. Thank you

    > which is where trickery using java comes in
    Javascript, please.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "andy_forbes" <[email protected]> wrote in
    message
    news:eiaero$mel$[email protected]..
    > hi take a look at this article mate should help you as
    it did me :
    >
    http://www.projectseven.com/tutorials/css/pvii_columns/index.htm
    > IE does not do 100% heights, which is where trickery
    using java comes in.
    > Also
    > you can use borders of the center div rather than
    margins if you want a
    > specific colour to stretch with the content. So you
    would take off the
    > margins
    > widths and replace with border widths as this hasd the
    same effect and you
    > can
    > then apply colours and they will stretch with the main
    content as they are
    > attached....am I making any sense for you?
    > Andy
    >

  • Help sizing panelTabbed components - how do I get it to 100% height

    firefox 2.0.0.4
    Is there any trick to getting a panelTabbed component to size itself (height and width) smartly? By default it always seems to be approx 200 pixels by 200 pixels, even if its children are bigger and even if I add my panelTabbed to a panelStretchLayout.
    When I try to force the height of my panelTabbed to 100%, I get wierd results. For instance, the entire panelTabbed component disappears (I can't find it in my browser, almost as if the height gets set to zero).
    When I look at the FusionOrderDemo home.jspx example, it looks like the author is hardcoding the panelTabs as a fixed height in pixels.
    Has anyone figured out any tricks for getting panelTabbed componets to use a % of the screen?
    I want to have a way that my panelTabbed component takes up as much space as my browser allows.
    Thanks,
    dave

    This is the code for the page:
    <af:form>
    <af:panelGroupLayout inlineStyle="position:absolute">
    <af:table value="#{bindings.EmployeeView1.collectionModel}" var="row"
    rows="#{bindings.EmployeeView1.rangeSize}"
    first="#{bindings.EmployeeView1.rangeStart}"
    emptyText="#{bindings.EmployeeView1.viewable ? 'No rows yet.' : 'Access Denied.'}"
    fetchSize="#{bindings.EmployeeView1.rangeSize}"
    inlineStyle="width:100%; height:100%;">
    <af:column sortProperty="EmpId" sortable="false"
    headerText="#{bindings.EmployeeView1.hints.EmpId.label}">
    <af:outputText value="#{row.EmpId}">
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.EmployeeView1.hints.EmpId.format}"/>
    </af:outputText>
    </af:column>
    <af:column sortProperty="FName" sortable="false"
    headerText="#{bindings.EmployeeView1.hints.FName.label}">
    <af:outputText value="#{row.FName}"/>
    </af:column>
    <af:column sortProperty="LName" sortable="false"
    headerText="#{bindings.EmployeeView1.hints.LName.label}">
    <af:outputText value="#{row.LName}"/>
    </af:column>
    </af:table>
    </af:panelGroupLayout>
    </af:form>
    Well this is not the scenario I’m looking for, what I need to do is to place a table inside of a panel group and that panel group to be inside a panel splitter, actually the table shows up fine, but I just need to remove the box that surround it i.e the table size to fit with the surrounding box. So when I set the table width & height to 100% the table rows are not shown.

  • 100% Height with Parallax Scrolling?

    I have an anchor point style parallax scrolling, I was wondering if I could have 100% height of my slideshow or image background when i maximize my screen, as you can see their is a white space below it that I do not like
    http://i.imgur.com/AryW4v1.jpg

    Hi,
    As of now, Muse does not offer the option of 100% height objects. You can use the fullscreen slideshow widget if you want the image slideshow across your complete page.
    Also, Please post this as a feature request at Ideas for features in Adobe Muse
    Hope this helps
    Regards,
    Rohit Nair

  • Force HTML5 Video 100% Height and Width ?

    So stage is 100% height and width
    the video div is also a 100% height and width
    However the background video had spaces to the left and right where it isn't filling the div is there away around this to force it to fit a 100% width and height always leaving no gaps?

    Hi there,
    You mean stretch the aspect ratio of a video element to whatever size the container is? No, the video will resize to fit in the browser while still retaining its aspect ratio - this is actually desirable in most cases.
    It is possible to do what you want using the object-fit css property, but it's currently only supported in the latest versions of Chrome and Opera browsers:
    http://caniuse.com/#search=object-fit
    hth,
    Joe

  • 100% height and width

    Hello,
    I'm building an one page parallax website, and I would like to make each section (anchor) responsive to the screen size, 100% height and width, it's that possible ? how ?
    thanks !
    Mirko

    Hi Mirko,
    Creating a responsive website using Adobe muse is not possible at the moment. But you can check some suggestion in the following post,Can you create responsive sites with Adobe Muse?

  • Is it safe to use the Belkin power strip with USB ports to charge my iPad? Or is the iPad USB adapter the safest route to take when traveling with device?

    Is it safe to use the Belkin power strip with USB ports to charge my iPad?
    Or is it better to travel with the Wall Charger provided with iPad?
    Concerned about safety of the device. Thanks for your thoughts.

    The quickest way (and really the only way) to charge your iPad is with the included 10W USB Power Adapter. iPad will also charge, although more slowly, when attached to a computer with a high-power USB port (many recent Mac computers) or with an iPhone Power Adapter (5W). When attached to a computer via a standard USB port (most PCs or older Mac computers) iPad will charge very slowly (but iPad indicates not charging). Make sure your computer is on while charging iPad via USB. If iPad is connected to a computer that’s turned off or is in sleep or standby mode, the iPad battery will continue to drain.
    Apple recommends that once a month you let the iPad fully discharge & then recharge to 100%.
    How to Calibrate Your Mac, iPhone, or iPad Battery
    http://www.macblend.com/how-to-calibrate-your-mac-iphone-or-ipad-battery/
    At this link http://www.tomshardware.com/reviews/galaxy-tab-android-tablet,3014-11.html , tests show that the iPad 2 battery (25 watt-hours) will charge to 90% in 3 hours 1 minute. It will charge to 100% in 4 hours 2 minutes. The new iPad has a larger capacity battery (42 watt-hours), so using the 10W charger will obviously take longer. If you are using your iPad while charging, it will take even longer. It's best to turn your new iPad OFF and charge over night. Also look at The iPad's charging challenge explained http://www.macworld.com/article/1150356/ipadcharging.html
    Also, if you have a 3rd generation iPad, look at
    Apple: iPad Battery Nothing to Get Charged Up About
    http://allthingsd.com/20120327/apple-ipad-battery-nothing-to-get-charged-up-abou t/
    Apple Explains New iPad's Continued Charging Beyond 100% Battery Level
    http://www.macrumors.com/2012/03/27/apple-explains-new-ipads-continued-charging- beyond-100-battery-level/
    New iPad Takes Much Longer to Charge Than iPad 2
    http://www.iphonehacks.com/2012/03/new-ipad-takes-much-longer-to-charge-than-ipa d-2.html
    Apple Batteries - iPad http://www.apple.com/batteries/ipad.html
    Extend iPad Battery Life (Look at pjl123 comment)
    https://discussions.apple.com/thread/3921324?tstart=30
    New iPad Slow to Recharge, Barely Charges During Use
    http://www.pcworld.com/article/252326/new_ipad_slow_to_recharge_barely_charges_d uring_use.html
    Tips About Charging for New iPad 3
    http://goodscool-electronics.blogspot.com/2012/04/tips-about-charging-for-new-ip ad-3.html
    Prolong battery lifespan for iPad / iPad 2 / iPad 3: charging tips
    http://thehowto.wikidot.com/prolong-battery-lifespan-for-ipad
    In rare instances when using the Camera Connection Kit, you may notice that iPad does not charge after using the Camera Connection Kit. Disconnecting and reconnecting the iPad from the charger will resolve this issue.
     Cheers, Tom

  • Create popup - 100% width x 100% height

    I'm trying to create a popup window using PopUpManager and a
    TitleWindow that will cover the entire application. In other words,
    I'm looking to have a 100% width x 100% height. Unfortuntely, this
    doesn't seem to be working - only absolute widths/heights seem to
    be working.
    Any suggestions?
    Thanks!

    That is not surprising. Popups are not exactly rooted within
    the application, so relative sizing will not work. Try getting the
    application size form the width/height properties at run time and
    setting the popup size accordingly.

  • Is disc doctor safe to use

    Is Disc Doctor safe to use?

    How to maintain a Mac
    1. Make redundant backups, keeping at least one off site at all times. One backup is not enough. Don’t back up your backups; make them independent of each other. Don’t rely completely on any single backup method, such as Time Machine. If you get an indication that a backup has failed, don't ignore it.
    2. Keep your software up to date. In the Software Update preference pane, you can configure automatic notifications of updates to OS X and other Mac App Store products. Some third-party applications from other sources have a similar feature, if you don’t mind letting them phone home. Otherwise you have to check yourself on a regular basis. This is especially important for complex software that modifies the operating system, such as device drivers. Before installing any Apple update, you must check that all such modifications that you use are compatible.
    3. Don't install crapware, such as “themes,” "haxies," “add-ons,” “toolbars,” “enhancers," “optimizers,” “accelerators,” "boosters," “extenders,” “cleaners,” "doctors," "tune-ups," “defragmenters,” “firewalls,” "barriers," “guardians,” “defenders,” “protectors,” most “plugins,” commercial "virus scanners,” "disk tools," or "utilities." With very few exceptions, this stuff is useless, or worse than useless.
    The more actively promoted the product, the more likely it is to be garbage. The most extreme example is the “MacKeeper” scam.
    As a rule, the only software you should install is that which directly enables you to do the things you use a computer for — such as creating, communicating, and playing — and does not modify the way other software works. Use your computer; don't fuss with it.
    Never install any third-party software unless you know how to uninstall it. Otherwise you may create problems that are very hard to solve.
    The free anti-malware application ClamXav is not crap, and although it’s not routinely needed, it may be useful in some environments, such as a mixed Mac-Windows enterprise network.
    4. Beware of trojans. A trojan is malicious software (“malware”) that the user is duped into installing voluntarily. Such attacks were rare on the Mac platform until sometime in 2011, but are now increasingly common, and increasingly dangerous.
    There is some built-in protection against downloading malware, but you can’t rely on it — the attackers are always at least one day ahead of the defense. You can’t rely on third-party protection either. What you can rely on is common-sense awareness — not paranoia, which only makes you more vulnerable.
    Never install software from an untrustworthy or unknown source. If in doubt, do some research. Any website that prompts you to install a “codec” or “plugin” that comes from the same site, or an unknown site, is untrustworthy. Software with a corporate brand, such as Adobe Flash Player, must be acquired directly from the developer. No intermediary is acceptable, and don’t trust links unless you know how to parse them. Any file that is automatically downloaded from a web page without your having requested it should go straight into the Trash. A website that claims you have a “virus,” or that anything else is wrong with your computer, is rogue.
    In OS X 10.7.5 or later, downloaded applications and Installer packages that have not been digitally signed by a developer registered with Apple are blocked from loading by default. The block can be overridden, but think carefully before you do so.
    Because of recurring security issues in Java, it’s best to disable it in your web browsers, if it’s installed. Few websites have Java content nowadays, so you won’t be missing much. This action is mandatory if you’re running any version of OS X older than 10.6.8 with the latest Java update. Note: Java has nothing to do with JavaScript, despite the similar names. Don't install Java unless you're sure you need it. Most people don't.
    5. Don't fill up your boot volume. A common mistake is adding more and more large files to your home folder until you start to get warnings that you're out of space, which may be followed in short order by a boot failure. This is more prone to happen on the newer Macs that come with an internal SSD instead of the traditional hard drive. The drive can be very nearly full before you become aware of the problem. While it's not true that you should or must keep any particular percentage of space free, you should monitor your storage consumption and make sure you're not in immediate danger of using it up. According to Apple documentation, you need at least 9 GB of free space on the startup volume for normal operation.
    If storage space is running low, use a tool such as the free application OmniDiskSweeper to explore your volume and find out what's taking up the most space. Move rarely-used large files to secondary storage.
    6. Relax, don’t do it. Besides the above, no routine maintenance is necessary or beneficial for the vast majority of users; specifically not “cleaning caches,” “zapping the PRAM,” "resetting the SMC," “rebuilding the directory,” "defragmenting the drive," “running periodic scripts,” “dumping logs,” "deleting temp files," “scanning for viruses,” "purging memory," "checking for bad blocks," "testing the hardware," or “repairing permissions.” Such measures are either completely pointless or are useful only for solving problems, not for prevention.
    The very height of futility is running an expensive third-party application called “Disk Warrior” when nothing is wrong, or even when something is wrong and you have backups, which you must have. Disk Warrior is a data-salvage tool, not a maintenance tool, and you will never need it if your backups are adequate. Don’t waste money on it or anything like it.

  • Inline styling: 100% height for image

    Hi, thanks for stopping by to read. Appreciate.
    Am making an html email and need to make side images 100% height. Doesn't seem to be working.
    Is there some trick to it. (stretching a tiny image for the side shadows)
    Am using, in the properties palette, the 'new inline style' function.
    http://motherdivine.org/email/thailand3/index.html
    Plus, there is some tiny white space at the very top of the first large temple photo. Any way to get rid of that? Made the td tr 'top'.
    Thanks so much,
    Warmly,
    Hope

    Safari seems to repeat, but nothing else is.  I'm thinking the valign="top" is not necessary there.  And align="right" can go too.  The other option is to use that as a background image for the td and use background-repeat, but that won't work in Outlook.  Personally speaking if this is time sensitive I would almost move to a light grey border and forget the shadow.
    I know it's approved for you but I can tell you there are a good number of display issues with that.  On a phone, the word Thailand won't be visible when the email opens only the image will be seen because it's too tall, if the user doesn't have images downloading immediately they will just see whitespace because there are no alt tags on the images, the map image is really small and it's hard to determine what it's pointing to, the 7 unnecessary p tags at the end of the email and, the target appears to be US but the English used is UK for words such as "programme", using +1 in phone numbers, and writing the day before the month is not showing an understanding of the recipient base.

  • How to find out which plugin is missing ( embed width="100%" height="100%" messagecallback="parent.frames.MANIPULATIONS.AppendMessage" spinfps="15" spiny="30")?

    How to find out which plugin is missing fro mthe website: http://web.it.nctu.edu.tw/~twli/interactive/scr_tutf.htm?
    After looking at one similar question found in mozilla support and answered by jscher2000 (https://support.mozilla.org/en-US/questions/957655), I have found out I have to look for either &lt;object or &lt;embed. What I found is : &lt;embed width="100%" height="100%" messagecallback="parent.frames.MANIPULATIONS.AppendMessage" spinfps="15" spiny="30"
    What do I have to do now?

    This big1.mol (and possibly big2.mol) file is loaded in the embed plugin object that is opened in a iframe, so you can right-click the plugin area to check the embed code.
    *http://web.it.nctu.edu.tw/%7Etwli/interactive/big1.mol
    *http://web.it.nctu.edu.tw/%7Etwli/interactive/big2.mol

Maybe you are looking for

  • Who can understand this problem..im confused pls help me!!!

    first i have to say i dont no much about troubleshooting or software side of computers.so pls help me to find me an answer for my problem. i cant get any search results ,when i typed something and cliked search it comes with an error message.but when

  • Accessing Photos in Photoshop 3.0, never registered?

    Adobe Photoshop Album Starter Edition 3.0 came on our HP computer when new several years ago.  We never registered it, but some camera photos got grabbed by Adobe and are now in there.  When we try to access, a screen pops up telling us we need to re

  • 6280 screen brightness

    My 6280 works o/k except for this abnormal (I think) behaviour. When a key is pressed or the slide is opened, from keylock, the sreen goes very bright for about one second and then the brightness lowers to the normal level. Is there anything I can do

  • Unable to preview existing SSRS reports in VS2010 x64

    I cannot preview any SSRS reports in VS2010, there are no errors, warnings or messages.  Output window says "Build: 1 succeeded or up-to-date, 0 failed, 0 skipped." The preview window reads: An error occurred during local report processing. An error

  • Error when creating a comment on a key figure from Bex

    When we try to create a comment on the query executed through a BEX Web Analyzer, we get the error message "Cannot read content from IContent instance. Error: You are not authorized to create a document with these properties".I have all authorization