HTML टेबल में वर्टिकल (घुमाया हुआ) टेक्स्ट


119

क्या एचटीएमएल टेबल सेल में 90 ° तक पाठ को घुमाने का एक (पोर्टेबल) तरीका है?

(मेरे पास कई स्तंभों के साथ एक तालिका है और शीर्षकों के लिए बहुत पाठ है, इसलिए मैं इसे अंतरिक्ष को बचाने के लिए लंबवत लिखना चाहूंगा।)


2
अतिरिक्त जवाब यहां: stackoverflow.com/questions/4264527/css-text-direction-vertical
Erel Segal-Halevi

जवाबों:


105

.box_rotate {
     -moz-transform: rotate(7.5deg);  /* FF3.5+ */
       -o-transform: rotate(7.5deg);  /* Opera 10.5 */
  -webkit-transform: rotate(7.5deg);  /* Saf3.1+, Chrome */
             filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0.083);  /* IE6,IE7 */
         -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0.083)"; /* IE8 */
    }
<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus vitae porta lectus. Suspendisse dolor mauris, scelerisque ut diam vitae, dictum ultricies est. Cras sit amet erat porttitor arcu lacinia ultricies. Morbi sodales, nisl vitae imperdiet consequat, purus nunc maximus nulla, et pharetra dolor ex non dolor.</div>
<div class="box_rotate">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus vitae porta lectus. Suspendisse dolor mauris, scelerisque ut diam vitae, dictum ultricies est. Cras sit amet erat porttitor arcu lacinia ultricies. Morbi sodales, nisl vitae imperdiet consequat, purus nunc maximus nulla, et pharetra dolor ex non dolor.</div>
<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus vitae porta lectus. Suspendisse dolor mauris, scelerisque ut diam vitae, dictum ultricies est. Cras sit amet erat porttitor arcu lacinia ultricies. Morbi sodales, nisl vitae imperdiet consequat, purus nunc maximus nulla, et pharetra dolor ex non dolor.</div>

Http://css3please.com/ से लिया गया

2017 तक, उपरोक्त साइट ने विरासत इंटरनेट एक्सप्लोरर फ़िल्टर को छोड़ने और अब मानक मानक में अधिक भरोसा करने के लिए निर्धारित नियम को सरल बना दिया transformहै :

.box_rotate {
  -webkit-transform: rotate(7.5deg);  /* Chrome, Opera 15+, Safari 3.1+ */
      -ms-transform: rotate(7.5deg);  /* IE 9 */
          transform: rotate(7.5deg);  /* Firefox 16+, IE 10+, Opera */
}
<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus vitae porta lectus. Suspendisse dolor mauris, scelerisque ut diam vitae, dictum ultricies est. Cras sit amet erat porttitor arcu lacinia ultricies. Morbi sodales, nisl vitae imperdiet consequat, purus nunc maximus nulla, et pharetra dolor ex non dolor.</div>
<div class="box_rotate">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus vitae porta lectus. Suspendisse dolor mauris, scelerisque ut diam vitae, dictum ultricies est. Cras sit amet erat porttitor arcu lacinia ultricies. Morbi sodales, nisl vitae imperdiet consequat, purus nunc maximus nulla, et pharetra dolor ex non dolor.</div>
<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus vitae porta lectus. Suspendisse dolor mauris, scelerisque ut diam vitae, dictum ultricies est. Cras sit amet erat porttitor arcu lacinia ultricies. Morbi sodales, nisl vitae imperdiet consequat, purus nunc maximus nulla, et pharetra dolor ex non dolor.</div>


यह बहुत अच्छा लग रहा है - मैं देखूंगा कि यह विभिन्न ब्राउज़रों के साथ कितना अच्छा काम करता है। (और 90deg, निश्चित रूप से ...) का उपयोग करते हुए
फ्लोरियन जेन

9
हालांकि एक मुद्दा यह है कि जहां आवश्यक हो, रोटेशन के बाद उनकी चौड़ाई में टेबल हेडिंग कॉलम को नहीं बढ़ाया जाएगा, इसलिए यह झलक दिखती है (एफएफ में कोशिश की गई) :(
xaralis

3
हाँ, फ़ायरफ़ॉक्स में (अन्य ब्राउज़रों के बारे में नहीं जानते) या तो <tr> घुमाया जाता है और शेष स्तंभ OR को समायोजित नहीं करता है, आप <tr> के अंदर <div> डाल सकते हैं और सेटिंग के साथ प्रयोग कर सकते हैं <tr> सकारात्मक और निहित <div> ABSOLUTE के लिए स्थिति और यह -moz- परिवर्तन-मूल: 0 50%; इससे उसकी स्थिति ठीक हो जाएगी। सही चौड़ाई और ऊँचाई प्राप्त करने के लिए, आपको <div> की ऊँचाई और चौड़ाई (क्रमशः) <tr> की चौड़ाई और ऊँचाई निर्धारित करने के लिए jquery या किसी चीज़ का उपयोग करने की आवश्यकता हो सकती है ।
एड्रियन गार्नर

2
केवल तभी काम करता है जब आपके पास वर्ग कोशिकाएं होती हैं, इसलिए किसी भी क्षैतिज स्थान को नहीं बचाता है
99 समस्याएं - सिंटेक्स एक

1
यह केवल सेल के लिए काम करेगा square, जो कि रोटेशन के बाद ऊँचाई और चौड़ाई को भी तत्व के साथ घुमाया जाता है जो कि लुक को तोड़ता है और तत्वों का पाठ अन्य के साथ ओवरलैप होता है
राजशेखर रेड्डी

35

वैकल्पिक समाधान?

पाठ को घुमाने के बजाय, यह "ऊपर से नीचे?"

ऐशे ही:

S  
O  
M  
E  

T  
E  
X  
T  

मुझे लगता है कि यह बहुत आसान होगा - आप प्रत्येक अक्षर के बाद पाठ की एक स्ट्रिंग उठा सकते हैं और एक पंक्ति विराम सम्मिलित कर सकते हैं।

यह इस तरह से ब्राउज़र में जावास्क्रिप्ट के माध्यम से किया जा सकता है:

"SOME TEXT".split("").join("\n")

... या आप इसे सर्वर-साइड कर सकते हैं, इसलिए यह क्लाइंट की JS क्षमताओं पर निर्भर नहीं करेगा। (मुझे लगता है कि आप "पोर्टेबल?" से क्या मतलब है)

इसके अलावा, उपयोगकर्ता को इसे पढ़ने के लिए अपना सिर नहीं मुड़ना पड़ता है। :)

अपडेट करें

यह धागा jQuery के साथ ऐसा करने के बारे में है।


1
ऐसा अध्ययन है जो दिखा रहा है कि इस तरह का लेआउट कम पठनीय है जो बाएं / दाएं घूमता है
that'sdouard Lopez

14

मूल उत्तर में एक उद्धरण है और आईई 8 लाइन पर मेरा पिछला उत्तर है जो इसे बंद कर देता है, ठीक अर्ध-कोलन के पास। Yikes और BAAAAD! नीचे दिए गए कोड में रोटेशन सही ढंग से सेट है और काम करता है। फ़िल्टर लगाने के लिए आपको IE में फ्लोट करना होगा।

<div style = "
    बाईंओर तैरना; 
    स्थिति: रिश्तेदार;
    -मोज़-ट्रांसफ़ॉर्म: रोटेट (270deg); / * FF3.5 + * /        
    -ओ-परिवर्तन: घुमाव (270deg); / * ओपेरा 10.5 * /   
    -वेबकैट-ट्रांसफॉर्म: रोटेट (270 डीजी); / * Saf3.1 +, क्रोम * /              
    फ़िल्टर: progid: DXImageTransform.Microsoft.BasicImage (रोटेशन = 3); / * IE6, IE7 * /          
    -ms-filter: progid: DXImageTransform.Microsoft.BasicImage (रोटेशन = 3); / * IE8 * /           
"
> गणना और मूल्य </ div>;

5
IE में काम करने के लिए फ्लोट की आवश्यकता को इंगित करने के लिए +1।
आरईटी

4

दो घंटे से अधिक समय तक कोशिश करने के बाद, मैं सुरक्षित रूप से कह सकता हूं कि अब तक बताई गई सभी विधि ब्राउज़र में काम नहीं करती हैं, या IE के लिए भी ब्राउज़र संस्करण भर में काम कर रहे हैं ...

उदाहरण के लिए (ऊपर उत्कीर्ण उत्तर):

 filter:  progid:DXImageTransform.Microsoft.BasicImage(rotation=0.083);  /* IE6,IE7 */
     -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0.083)"; /* IE8 */

IE9 में दो बार घूमता है, एक बार फ़िल्टर के लिए, और एक बार -ms-filter के लिए, इसलिए ...

अन्य सभी उल्लिखित विधियां या तो काम नहीं करती हैं, कम से कम नहीं अगर आपको टेबल हेडर सेल (पृष्ठभूमि रंग के साथ) की कोई निश्चित ऊंचाई / चौड़ाई निर्धारित नहीं करनी है, जहां इसे स्वचालित रूप से उच्चतम तत्व के आकार में समायोजित करना चाहिए।

तो नाथन लॉन्ग द्वारा प्रस्तावित सर्वर-साइड इमेज पीढ़ी पर विस्तार से बताएं, जो वास्तव में केवल सार्वभौमिक रूप से काम करने का तरीका है, यहां जेनेरिक हैंडलर (* .ashx) के लिए मेरा VB.NET कोड है:

Imports System.Web
Imports System.Web.Services


Public Class GenerateImage
    Implements System.Web.IHttpHandler


    Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest
        'context.Response.ContentType = "text/plain"
        'context.Response.Write("Hello World!")
        context.Response.ContentType = "image/png"

        Dim strText As String = context.Request.QueryString("text")
        Dim strRotate As String = context.Request.QueryString("rotate")
        Dim strBGcolor As String = context.Request.QueryString("bgcolor")

        Dim bRotate As Boolean = True

        If String.IsNullOrEmpty(strText) Then
            strText = "No Text"
        End If


        Try
            If Not String.IsNullOrEmpty(strRotate) Then
                bRotate = System.Convert.ToBoolean(strRotate)
            End If
        Catch ex As Exception

        End Try


        'Dim img As System.Drawing.Image = GenerateImage(strText, "Arial", bRotate)
        'Dim img As System.Drawing.Image = CreateBitmapImage(strText, bRotate)

        ' Generic error in GDI+
        'img.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Png)

        'Dim bm As System.Drawing.Bitmap = New System.Drawing.Bitmap(img)
        'bm.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Png)

        Using msTempOutputStream As New System.IO.MemoryStream
            'Dim img As System.Drawing.Image = GenerateImage(strText, "Arial", bRotate)
            Using img As System.Drawing.Image = CreateBitmapImage(strText, bRotate, strBGcolor)
                img.Save(msTempOutputStream, System.Drawing.Imaging.ImageFormat.Png)
                msTempOutputStream.Flush()

                context.Response.Buffer = True
                context.Response.ContentType = "image/png"
                context.Response.BinaryWrite(msTempOutputStream.ToArray())
            End Using ' img

        End Using ' msTempOutputStream

    End Sub ' ProcessRequest


    Private Function CreateBitmapImage(strImageText As String) As System.Drawing.Image
        Return CreateBitmapImage(strImageText, True)
    End Function ' CreateBitmapImage


    Private Function CreateBitmapImage(strImageText As String, bRotate As Boolean) As System.Drawing.Image
        Return CreateBitmapImage(strImageText, bRotate, Nothing)
    End Function


    Private Function InvertMeAColour(ColourToInvert As System.Drawing.Color) As System.Drawing.Color
        Const RGBMAX As Integer = 255
        Return System.Drawing.Color.FromArgb(RGBMAX - ColourToInvert.R, RGBMAX - ColourToInvert.G, RGBMAX - ColourToInvert.B)
    End Function



    Private Function CreateBitmapImage(strImageText As String, bRotate As Boolean, strBackgroundColor As String) As System.Drawing.Image
        Dim bmpEndImage As System.Drawing.Bitmap = Nothing

        If String.IsNullOrEmpty(strBackgroundColor) Then
            strBackgroundColor = "#E0E0E0"
        End If

        Dim intWidth As Integer = 0
        Dim intHeight As Integer = 0


        Dim bgColor As System.Drawing.Color = System.Drawing.Color.LemonChiffon ' LightGray
        bgColor = System.Drawing.ColorTranslator.FromHtml(strBackgroundColor)

        Dim TextColor As System.Drawing.Color = System.Drawing.Color.Black
        TextColor = InvertMeAColour(bgColor)

        'TextColor = Color.FromArgb(102, 102, 102)



        ' Create the Font object for the image text drawing.
        Using fntThisFont As New System.Drawing.Font("Arial", 11, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel)

            ' Create a graphics object to measure the text's width and height.
            Using bmpInitialImage As New System.Drawing.Bitmap(1, 1)

                Using gStringMeasureGraphics As System.Drawing.Graphics = System.Drawing.Graphics.FromImage(bmpInitialImage)
                    ' This is where the bitmap size is determined.
                    intWidth = CInt(gStringMeasureGraphics.MeasureString(strImageText, fntThisFont).Width)
                    intHeight = CInt(gStringMeasureGraphics.MeasureString(strImageText, fntThisFont).Height)

                    ' Create the bmpImage again with the correct size for the text and font.
                    bmpEndImage = New System.Drawing.Bitmap(bmpInitialImage, New System.Drawing.Size(intWidth, intHeight))

                    ' Add the colors to the new bitmap.
                    Using gNewGraphics As System.Drawing.Graphics = System.Drawing.Graphics.FromImage(bmpEndImage)
                        ' Set Background color
                        'gNewGraphics.Clear(Color.White)
                        gNewGraphics.Clear(bgColor)
                        gNewGraphics.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias
                        gNewGraphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAlias


                        ''''

                        'gNewGraphics.TranslateTransform(bmpEndImage.Width, bmpEndImage.Height)
                        'gNewGraphics.RotateTransform(180)
                        'gNewGraphics.RotateTransform(0)
                        'gNewGraphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.SystemDefault


                        gNewGraphics.DrawString(strImageText, fntThisFont, New System.Drawing.SolidBrush(TextColor), 0, 0)

                        gNewGraphics.Flush()

                        If bRotate Then
                            'bmpEndImage = rotateImage(bmpEndImage, 90)
                            'bmpEndImage = RotateImage(bmpEndImage, New PointF(0, 0), 90)
                            'bmpEndImage.RotateFlip(RotateFlipType.Rotate90FlipNone)
                            bmpEndImage.RotateFlip(System.Drawing.RotateFlipType.Rotate270FlipNone)
                        End If ' bRotate

                    End Using ' gNewGraphics

                End Using ' gStringMeasureGraphics

            End Using ' bmpInitialImage

        End Using ' fntThisFont

        Return bmpEndImage
    End Function ' CreateBitmapImage


    ' http://msdn.microsoft.com/en-us/library/3zxbwxch.aspx
    ' http://msdn.microsoft.com/en-us/library/7e1w5dhw.aspx
    ' http://www.informit.com/guides/content.aspx?g=dotnet&seqNum=286
    ' http://road-blogs.blogspot.com/2011/01/rotate-text-in-ssrs.html
    Public Shared Function GenerateImage_CrappyOldReportingServiceVariant(ByVal strText As String, ByVal strFont As String, bRotate As Boolean) As System.Drawing.Image
        Dim bgColor As System.Drawing.Color = System.Drawing.Color.LemonChiffon ' LightGray
        bgColor = System.Drawing.ColorTranslator.FromHtml("#E0E0E0")


        Dim TextColor As System.Drawing.Color = System.Drawing.Color.Black
        'TextColor = System.Drawing.Color.FromArgb(255, 0, 0, 255)

        If String.IsNullOrEmpty(strFont) Then
            strFont = "Arial"
        Else
            If strFont.Trim().Equals(String.Empty) Then
                strFont = "Arial"
            End If
        End If


        'Dim fsFontStyle As System.Drawing.FontStyle = System.Drawing.FontStyle.Regular
        Dim fsFontStyle As System.Drawing.FontStyle = System.Drawing.FontStyle.Bold
        Dim fontFamily As New System.Drawing.FontFamily(strFont)
        Dim iFontSize As Integer = 8 '//Change this as needed


        ' vice-versa, because 270° turn
        'Dim height As Double = 2.25
        Dim height As Double = 4
        Dim width As Double = 1

        ' width = 10
        ' height = 10

        Dim bmpImage As New System.Drawing.Bitmap(1, 1)
        Dim iHeight As Integer = CInt(height * 0.393700787 * bmpImage.VerticalResolution) 'y DPI
        Dim iWidth As Integer = CInt(width * 0.393700787 * bmpImage.HorizontalResolution) 'x DPI

        bmpImage = New System.Drawing.Bitmap(bmpImage, New System.Drawing.Size(iWidth, iHeight))



        '// Create the Font object for the image text drawing.
        'Dim MyFont As New System.Drawing.Font("Arial", iFontSize, fsFontStyle, System.Drawing.GraphicsUnit.Point)
        '// Create a graphics object to measure the text's width and height.
        Dim MyGraphics As System.Drawing.Graphics = System.Drawing.Graphics.FromImage(bmpImage)
        MyGraphics.Clear(bgColor)


        Dim stringFormat As New System.Drawing.StringFormat()
        stringFormat.FormatFlags = System.Drawing.StringFormatFlags.DirectionVertical
        'stringFormat.FormatFlags = System.Drawing.StringFormatFlags.DirectionVertical Or System.Drawing.StringFormatFlags.DirectionRightToLeft
        Dim solidBrush As New System.Drawing.SolidBrush(TextColor)
        Dim pointF As New System.Drawing.PointF(CSng(iWidth / 2 - iFontSize / 2 - 2), 5)
        Dim font As New System.Drawing.Font(fontFamily, iFontSize, fsFontStyle, System.Drawing.GraphicsUnit.Point)


        MyGraphics.TranslateTransform(bmpImage.Width, bmpImage.Height)
        MyGraphics.RotateTransform(180)
        MyGraphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.SystemDefault
        MyGraphics.DrawString(strText, font, solidBrush, pointF, stringFormat)
        MyGraphics.ResetTransform()

        MyGraphics.Flush()

        'If Not bRotate Then
        'bmpImage.RotateFlip(System.Drawing.RotateFlipType.Rotate90FlipNone)
        'End If

        Return bmpImage
    End Function ' GenerateImage



    ReadOnly Property IsReusable() As Boolean Implements IHttpHandler.IsReusable
        Get
            Return False
        End Get
    End Property ' IsReusable


End Class

ध्यान दें कि यदि आपको लगता है कि यह हिस्सा है

        Using msTempOutputStream As New System.IO.MemoryStream
            'Dim img As System.Drawing.Image = GenerateImage(strText, "Arial", bRotate)
            Using img As System.Drawing.Image = CreateBitmapImage(strText, bRotate, strBGcolor)
                img.Save(msTempOutputStream, System.Drawing.Imaging.ImageFormat.Png)
                msTempOutputStream.Flush()

                context.Response.Buffer = True
                context.Response.ContentType = "image/png"
                context.Response.BinaryWrite(msTempOutputStream.ToArray())
            End Using ' img

        End Using ' msTempOutputStream

से बदला जा सकता है

img.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Png)

क्योंकि यह विकास सर्वर पर काम करता है, तो आप एक ही कोड को जेनरिक GDI + अपवाद नहीं फेंकेंगे, यदि आप इसे Windows 2003 IIS 6 सर्वर पर तैनात करते हैं, तो आप गलती से गलती कर देंगे।

फिर इसे इस तरह उपयोग करें:

<img alt="bla" src="GenerateImage.ashx?no_cache=123&text=Hello%20World&rotate=true" />

हालाँकि, यह VB.NET पर निर्भर करता है, जो सार्वभौमिक रूप से पोर्टेबल भी नहीं है। (लेकिन कम से कम ग्राहकों से सर्वर तक समस्या को स्थानांतरित करता है।)
फ्लोरियन जेन

@ फ़्लोरियन जेन: ठीक है, हाँ, VB.NET कोड VB.NET पर निर्भर करता है, लेकिन आप इसे PHP या Phyton या Ruby या whater :) के साथ भी कर सकते हैं। वैसे, इसे C # में कनवर्ट करें और आप इसे मोनो के लिए चला सकते हैं लिनक्स या मैक या सोलारिस।
स्टीफन स्टीगर

4

समुदाय में मेरा पहला योगदान, उदाहरण के लिए एक साधारण पाठ और एक तालिका के शीर्षलेख को घुमाने के लिए, केवल html और css का उपयोग करके।

यहां छवि विवरण दर्ज करें

एचटीएमएल

<div class="rotate">text</div>

सीएसएस

.rotate {
  display:inline-block;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

यहाँ jsfiddle में एक उदाहरण है


वर्तमान में jsfiddle के बजाय स्निपेट का उपयोग करने की अनुशंसा की जाती है ।
मत्‍स्‍योज

अगर मैं सही ढंग से समझूं, तो ये ,lvaro G. Vicario के समाधान की तुलना में अप-टू-डेट CSS नियम हैं?
फ्लोरियन जेन

@matsjoyce स्निपेट में बहुत सारे कीड़े हैं और यह काम को ढीला करने के बीच में भी टूट जाता है ..
राजशेखर रेड्डी

1
यह उत्तर केवल वर्ग कोशिकाओं के लिए काम करता है .. यह आयताकार कोशिकाओं के लिए टूटता है jsfiddle.net/a2uxgm44/156
राजशेखर रेड्डी

3

IE फिल्टर प्लस सीएसएस ट्रांसफ़ॉर्म ( सफारी और फ़ायरफ़ॉक्स )।

IE का समर्थन सबसे पुराना है, सफारी में 3.1.2 में समर्थन [कम से कम कुछ?] है, और फ़ायरफ़ॉक्स में 3.1 तक समर्थन नहीं होगा।

वैकल्पिक रूप से, मैं कैनवस / वीएमएल या एसवीजी / वीएमएल के मिश्रण की सिफारिश करूंगा। (कैनवस का व्यापक समर्थन है।)


मैं पलकहीनता से सहमत हूं। यह अभी बहुत "हैक" है। प्राइम-टाइम के लिए बिल्कुल तैयार नहीं।
डायोडस - जेम्स मैकफर्लेन

2

यहाँ एक है जो कुछ सर्वर साइड प्रोसेसिंग के साथ सादे-पाठ के लिए काम करता है:

public string RotateHtmltext(string innerHtml)
{
   const string TRANSFORMTEXT = "transform: rotate(90deg);";
   const string EXTRASTYLECSS = "<style type='text/css'>.r90 {"
                                 + "-webkit-" + TRANSFORMTEXT
                                 + "-moz-" + TRANSFORMTEXT
                                 + "-o-" + TRANSFORMTEXT
                                 + "-ms-" + TRANSFORMTEXT
                                 + "" + TRANSFORMTEXT
                                 + "width:1em;line-height:1ex}</style>";
   const string WRAPPERDIV = "<div style='display: table-cell; vertical-align: middle;'>";

   var newinnerHtml = string.Join("</div>"+WRAPPERDIV, Regex.Split(innerHtml, @"<br */?>").Reverse());

   newinnerHtml = Regex.Replace(newinnerHtml, @"((?:<[^>]*>)|(?:[^<]+))",
                                 match => match.Groups[1].Value.StartsWith("<")
                                             ? match.Groups[1].Value
                                             : string.Join("", match.Groups[1].Value.ToCharArray().Select(x=>"<div class='r90'>"+x+"</div>")),
                                 RegexOptions.Singleline);
   return EXTRASTYLECSS + WRAPPERDIV + newinnerHtml + "</div>";
}

जो कुछ इस तरह देता है:

<style type="text/css">.r90 {
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-o-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
width: 1em;
line-height: 1ex; 
}</style>
<div style="display: table-cell; vertical-align: middle;">
<div class="r90">p</div>
<div class="r90">o</div>
<div class="r90">s</div>
</div><div style="display: table-cell; vertical-align: middle;">
<div class="r90">(</div>
<div class="r90">A</div>
<div class="r90">b</div>
<div class="r90">s</div>
<div class="r90">)</div>
</div>

http://jsfiddle.net/TzzHy/


1

मैं फ़ॉन्ट विस्मयकारी पुस्तकालय का उपयोग कर रहा था और किसी भी HTML तत्व पर निम्नलिखित से निपटने के द्वारा इस प्रभाव को प्राप्त करने में सक्षम था।

<div class="fa fa-rotate-270">
  My Test Text
</div>

आपकी माइलेज भिन्न हो सकती है।


1

एक और समाधान:

(function () {

    var make_rotated_text = function (text)
    {
        var can = document.createElement ('canvas');
        can.width = 10;
        can.height = 10;
        var ctx=can.getContext ("2d");
        ctx.font="20px Verdana";
        var m = ctx.measureText(text);
        can.width = 20;
        can.height = m.width;
        ctx.font="20px Verdana";
        ctx.fillStyle = "#000000";
        ctx.rotate(90 * (Math.PI / 180));
        ctx.fillText (text, 0, -2);
        return can;
    };

    var canvas = make_rotated_text ("Hellooooo :D");
    var body = document.getElementsByTagName ('body')[0];
    body.appendChild (canvas);

}) ();

मैं पूरी तरह से मानता हूं कि यह काफी हैकिश है, लेकिन यह एक सरल उपाय है यदि आप अपने सीएसएस को फुलाने से बचना चाहते हैं।


0
-moz-transform: rotate(7.5deg);  /* FF3.5+ */
-o-transform: rotate(7.5deg);  /* Opera 10.5 */
-webkit-transform: rotate(7.5deg);  /* Saf3.1+, Chrome */
filter:  progid:DXImageTransform.Microsoft.BasicImage(rotation=1);  /* IE6,IE7 allows only 1, 2, 3 */
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; /* IE8 allows only 1 2 or 3*/

0

इस पर एक नज़र है, मैं IE 7 के लिए एक समाधान की तलाश करते हुए यह पाया।

पूरी तरह से सीएसएस के लिए एक अच्छा समाधान केवल वाइब्स

शुक्रिया के लिए धन्यवाद aiboy

लिंक लिंक

और यहां स्टैक-ओवरफ्लो लिंक है जहां मैं इस लिंक म्याऊ के पार आया था

         .vertical-text-vibes{

                /* this is for shity "non IE" browsers
                   that dosn't support writing-mode */
                -webkit-transform: translate(1.1em,0) rotate(90deg);
                   -moz-transform: translate(1.1em,0) rotate(90deg);
                     -o-transform: translate(1.1em,0) rotate(90deg);
                        transform: translate(1.1em,0) rotate(90deg);
                -webkit-transform-origin: 0 0;
                   -moz-transform-origin: 0 0;
                     -o-transform-origin: 0 0;
                        transform-origin: 0 0;  
             /* IE9+ */    ms-transform: none;    
                   -ms-transform-origin: none;    
        /* IE8+ */    -ms-writing-mode: tb-rl;    
   /* IE7 and below */    *writing-mode: tb-rl;

            }
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.