text-align



значения свойства:


  • left
  • right
  • center
  • justify
  • inherit



css/style.css
  • div {
  •  width: 400px;
  •  height: 120px;
  •  border: 1px solid #8E8E8E;
  • }
  •  
  • .a {
  •  text-align: left;
  • }
  •  
  • .c {
  •  text-align: justify;
  • }
div {
 width: 400px;
 height: 120px;
 border: 1px solid #8E8E8E;
}

.a {
 text-align: left;
}

.c {
 text-align: justify;
}


index.html
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  •  <link href="css/style.css" rel="stylesheet" />
  •  <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
  • </head>
  • <body>
  •  <div class="a">
  •   But it was a dream. Three weeks ago, I had been lying on a beach
  •   in Hawaii. But I was not in Hawaii now. I was dreaming in my office
  •   in Los Angeles. I had returned from my holiday and there was no
  •   work for me.
  •  </div>
  •  <br />
  •  <div id="div1">
  •   But it was a dream. Three weeks ago, I had been lying on a beach
  •   in Hawaii. But I was not in Hawaii now. I was dreaming in my office
  •   in Los Angeles. I had returned from my holiday and there was no
  •   work for me.
  •  </div>
  •  <br />
  •  <div class="b">
  •   But it was a dream. Three weeks ago, I had been lying on a beach
  •   in Hawaii. But I was not in Hawaii now. I was dreaming in my office
  •   in Los Angeles. I had returned from my holiday and there was no
  •   work for me.
  •  </div>
  •  <br />
  •  <div class="c">
  •   But it was a dream. Three weeks ago, I had been lying on a beach
  •   in Hawaii. But I was not in Hawaii now. I was dreaming in my office
  •   in Los Angeles. I had returned from my holiday and there was no
  •   work for me.
  •  </div>
  • <script>
  •  /*JavaScript*/
  •  document.getElementById("div1").style.textAlign = "right";
  •  /*jQuery*/
  •  $(document).ready(function () {
  •   $(".b").css({ "text-align": "center" });
  •  });
  • </script>
  • </body>
  • </html>
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  •  <link href="css/style.css" rel="stylesheet" />
  •  <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
  • </head>
  • <body>
  •  <div class="a">
  •   But it was a dream. Three weeks ago, I had been lying on a beach
  •   in Hawaii. But I was not in Hawaii now. I was dreaming in my office
  •   in Los Angeles. I had returned from my holiday and there was no
  •   work for me.
  •  </div>
  •  <br />
  •  <div id="div1">
  •   But it was a dream. Three weeks ago, I had been lying on a beach
  •   in Hawaii. But I was not in Hawaii now. I was dreaming in my office
  •   in Los Angeles. I had returned from my holiday and there was no
  •   work for me.
  •  </div>
  •  <br />
  •  <div class="b">
  •   But it was a dream. Three weeks ago, I had been lying on a beach
  •   in Hawaii. But I was not in Hawaii now. I was dreaming in my office
  •   in Los Angeles. I had returned from my holiday and there was no
  •   work for me.
  •  </div>
  •  <br />
  •  <div class="c">
  •   But it was a dream. Three weeks ago, I had been lying on a beach
  •   in Hawaii. But I was not in Hawaii now. I was dreaming in my office
  •   in Los Angeles. I had returned from my holiday and there was no
  •   work for me.
  •  </div>
  • <script>
  •  /*JavaScript*/
  •  document.getElementById("div1").style.textAlign = "right";
  •  /*jQuery*/
  •  $(document).ready(function () {
  •   $(".b").css({ "text-align": "center" });
  •  });
  • </script>
  • </body>
  • </html>