How can I move text to the left with CSS?

Niklas R.

I have some text that is inside a span element and I'd like to left-align it instead of the way it is now which is centered. I tried making a margin to the right and text center with CSS but that didn't work. Can you tell me how to do it? The text that I want to the left is "(Jag arbetade: 4-6 timmar/vecka)" and now it is rendered centered if you look at my fiddle

The code that I'd like to change is

<div id="i4c2" class="artBaseRow">
    <div id="i4_tbl_11" class="artWrapper">
        <table class="srtbl" cellpadding="2" cellspacing="0" summary="">
            <caption><b>Vad var det bästa med kursen?</b></caption>
            <tbody>
                <tr class="srtbl-h1">
                    <th class="srtbl-qt">
                        <div>
                            <br /> <span>(Jag arbetade: 4-6 timmar/vecka)</span>
                        </div>
                    </th>
                </tr>
            </tbody>
        </table>
    </div>
</div>

So that the text "(Jag arbetade..." is aligned to the left alongside the heading. How can I do that?

Justinas

Add this css for srtbl-qt class (try put it at the end of CSS file)

.srtbl-qt {
    text-align: left;
}

Also I don't know why you need div and break and span elements around that text, but it can be removed (hint: th {padding-top: 10px;})

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

How can I get the text in the bottom left of my buttons?

분류에서Dev

Whay do my divs move down on the page when there they have text in them and how can I fix this?

분류에서Dev

How can I move the images or the text within the column of a row such that it does not lose it's responsiveness?

분류에서Dev

How can I move files into subdirectories by count?

분류에서Dev

How can I move files into subdirectories by count?

분류에서Dev

How can I get facing html elements to left-align and right-align, respectively, preferably using CSS?

분류에서Dev

How do I animate a div with CSS3 to move and spin?

분류에서Dev

How can I move all files in subdirectories recursively to a single directory?

분류에서Dev

How can I move KDE Plasma taskbar to the top?

분류에서Dev

How can I find files and then use xargs to move them?

분류에서Dev

How can I move tmux's status bar to the top?

분류에서Dev

How can i move an encrypted home directory to another partition?

분류에서Dev

How can I copy a text file into another?

분류에서Dev

How can I automate inputting text into a prompt?

분류에서Dev

How can I centralize a list with css?

분류에서Dev

How can I disable inherit in CSS?

분류에서Dev

How can i make this css star smaller?

분류에서Dev

Android, Kotlin : how can I only allow my view pager swiping on the left when needed

분류에서Dev

How can I parse the left and right values of a string that looks like this: "5 - 8"

분류에서Dev

How can I create SQL that does a Left Outer Join and also a count from another table?

분류에서Dev

How can I create a regex to match the inner-most match or work from right-to-left?

분류에서Dev

How can i make shared pointer from a class object with move semantics

분류에서Dev

How can I move specific files from within a folder when that folder is added to a directory?

분류에서Dev

how can I move div with position:relative above div with position:absolute?

분류에서Dev

How can I move the Microsoft Word Styles Pane when the top is off the screen?

분류에서Dev

how can I move files with specific names from one folder to another

분류에서Dev

How can I type text after dropped content

분류에서Dev

How can I format this div without the text inside breaking a line?

분류에서Dev

How can I use JTextField to read the inputted text correctly?

Related 관련 기사

  1. 1

    How can I get the text in the bottom left of my buttons?

  2. 2

    Whay do my divs move down on the page when there they have text in them and how can I fix this?

  3. 3

    How can I move the images or the text within the column of a row such that it does not lose it's responsiveness?

  4. 4

    How can I move files into subdirectories by count?

  5. 5

    How can I move files into subdirectories by count?

  6. 6

    How can I get facing html elements to left-align and right-align, respectively, preferably using CSS?

  7. 7

    How do I animate a div with CSS3 to move and spin?

  8. 8

    How can I move all files in subdirectories recursively to a single directory?

  9. 9

    How can I move KDE Plasma taskbar to the top?

  10. 10

    How can I find files and then use xargs to move them?

  11. 11

    How can I move tmux's status bar to the top?

  12. 12

    How can i move an encrypted home directory to another partition?

  13. 13

    How can I copy a text file into another?

  14. 14

    How can I automate inputting text into a prompt?

  15. 15

    How can I centralize a list with css?

  16. 16

    How can I disable inherit in CSS?

  17. 17

    How can i make this css star smaller?

  18. 18

    Android, Kotlin : how can I only allow my view pager swiping on the left when needed

  19. 19

    How can I parse the left and right values of a string that looks like this: "5 - 8"

  20. 20

    How can I create SQL that does a Left Outer Join and also a count from another table?

  21. 21

    How can I create a regex to match the inner-most match or work from right-to-left?

  22. 22

    How can i make shared pointer from a class object with move semantics

  23. 23

    How can I move specific files from within a folder when that folder is added to a directory?

  24. 24

    how can I move div with position:relative above div with position:absolute?

  25. 25

    How can I move the Microsoft Word Styles Pane when the top is off the screen?

  26. 26

    how can I move files with specific names from one folder to another

  27. 27

    How can I type text after dropped content

  28. 28

    How can I format this div without the text inside breaking a line?

  29. 29

    How can I use JTextField to read the inputted text correctly?

뜨겁다태그

보관