Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8042619
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T04:38:46+00:00 2026-06-05T04:38:46+00:00

I have a block of a variable height in which I want to put

  • 0

I have a block of a variable height in which I want to put another block with 100% height and vertical text (bottom-to-top direction) and stack it to the left side of the outer block. Is there a way to achieve it with CSS transforms but without width and height calculations in JS?

Sketch

This is what I could get so far:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<style type="text/css">
.block1 {
    border: 4px solid #888;
    height: 120px;
    width: 200px;
}
.block2 {
    height: 100%;
    border: 4px solid red;
}
.msg {
    display: inline-block;
    white-space: nowrap;
    font-family: Verdana;
    font-size: 14pt;
    -moz-transform: rotate(-90deg);
    -moz-transform-origin: center center;
    -webkit-transform: rotate(-90deg);
    -webkit-transform-origin: center center;
    -ms-transform: rotate(-90deg);
    -ms-transform-origin: center center;
}
</style>
</head>
<body>
    <div class="block1">
        <table class="block2">
        <tr>
            <td>
                <div class="msg">Hi there!</div>
            </td>
        </tr>
        </table>
    </div>
</body>
</html>

My test

You can see that the inner block’s computed width is the same as the text width before rotation.

UPDATE:

Here is the picture of what I want to get in the end:

enter image description here

It’s a horizontal stripe with items stacked to its left side, and with a vertical header block. Stripe’s height is variable, so items should adapt and the header’s text should remain centered.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T04:38:48+00:00Added an answer on June 5, 2026 at 4:38 am

    I believe you were only using a <table> because it seemed to be the easiest way to achieve what you were looking for, so I cut it out of the equation and used semantic HTML instead. If there was another reason, I apologize in advance and you should be able to port the styles over to use a <table> instead.

    See the jsFiddle demo to view the code in action. Or, continue on to the code:

    HTML

    <section class="wrapper">
        <header><h1>Test</h1></header>
        <article>Text.</article><!--
        --><article>More text.</article><!--
        --><article>Photos of cats.</article><!--
        --><article>More photos of cats.</article>
    </section>
    

    CSS

    .wrapper {
        margin:1em;
        position:relative;
        padding-left:2em; /* line-height of .wrapper div:first-child span */
        background:#fed;
    }
    .wrapper header {
        display:block;
        position:absolute;
        top:0;
        left:0;
        bottom:0;
        width:2em; /* line-height of .wrapper div:first-child span */
        overflow:hidden;
        white-space:nowrap;
    }
    .wrapper header h1 {
        -moz-transform-origin:0 50%;
        -moz-transform:rotate(-90deg) translate(-50%, 50%);
        -webkit-transform-origin:0 50%;
        -webkit-transform:rotate(-90deg) translate(-50%, 50%);
        -o-transform-origin:0 50%;
        -o-transform:rotate(-90deg) translate(-50%, 50%);
        -ms-transform-origin:0 50%;
        -ms-transform:rotate(-90deg) translate(-50%, 50%);
        transform-origin:0 50%;
        transform:rotate(-90deg) translate(-50%, 50%);
        position:absolute;
        top:0;
        bottom:0;
        height:2em; /* line-height of .wrapper div:first-child span */
        margin:auto;
        font-weight:bold;
        font-size:1em;
        line-height:2em; /* Copy to other locations */
    }
    .wrapper article {
        display:inline-block;
        width:25%;
        padding:1em 1em 1em 0;
        vertical-align:middle;
        -moz-box-sizing:border-box;
        -webkit-box-sizing:border-box;
        -ms-box-sizing:border-box;
        -o-box-sizing:border-box;
        box-sizing:border-box;
    }
    

    How it works

    The <header> is set to the height of .wrapper and has it’s width set to 2em (value of line-height for the <h1>). Then, the <h1> is vertically aligned (with top:0;bottom:0;height:2em;margin:auto; [2em is also from line-height]). Once the <h1> is vertically aligned, it is rotated counter-clockwise 90 degrees by the middle of its left side. In order to make the <h1> visible again, it is translated 50% vertically (to pull it back onto the screen horizontally) and -50% horizontally (to vertically align it). And yes, the wording is correct–everything just gets confusing once you rotate by [-]90 degrees 😉

    Gotchas

    • Only a static “height” is supported for the <h1>. In this case, only 1 line is supported.
    • Wrapping will not work (I’ve actually disabled it in this example), so anything that doesn’t fit in the height of .wrapper will be hidden.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In Javascript, I have a variable that is set to a block of text
I'm trying to have a variable-height UITextView which changes size to accomodate its contents,
I have 4 inline-block elements with fixed width but variable content, and I want
I have a ListBox control in WPF which contains items of variable height (predominantly
I have a block of text that I need to give a background colour
in this variable: $this->item->text I have this string: <!-- JoomlaWorks Disqus Comment System for
Ok so the question is simple: I have a variable width and height div
I have a textview in which I must load a message. I want to
I have the following xaml in my window: <Border Height=100 BorderBrush=Black BorderThickness=2 CornerRadius=10 Background=PaleVioletRed
I need to center align images (variable width and height) inside block level elements

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.