Vertical Line in html

How to Create Vertical Line in HTML

You might have a couple of reasons to create a vertical line on your web page but HTML does not have any element for vertical lines. Although HTML only have the element for a horizontal line; but still there are multiple ways to create a vertical line in HTML as mentioned below:

  • Using Border CSS Property
  • Using width and height CSS Property
  • Using hr Transform Property

Here in this article, we have explained all possible ways to create Vertical line in HTML:

1) Using Border-Right, Height and Position CSS Property

        /* Applying the style on the complete body of html page */ body < text-align: center; >/* CSS to add vertical line in the right */ .verticalLine 

Vertical Line using HTML and CSS

using border-right, height and position property

2) Vertical line using Border-Left, Height, and Position CSS Property

        /* Applying the style on complete body of html page */ body < text-align: center; >/* CSS to add vertical line in the left */ .verticalLine 

Vertical Line using HTML and CSS

vertical line using border-left, height and position property

3) Vertical line using hr Transform Property

A vertical line can be created in HTML using transform property in

Читайте также:  Галерея

tag. With the help of this property, you can rotate a horizontal line to a vertical line.

        body < text-align: center; >hr 

Vertical Line using hr Transform Property

4) Double Vertical line using CSS Property

        /* Applying the style on complete body of html page */ body < text-align: center; >/* CSS to add vertical line in the right */ .verticalLine 

Vertical Line using HTML and CSS

double vertical line

5) Create Multiple Types (Double, Solid, Dashed, Dotted) Vertical Lines

        div.dotted < border-style: none dotted none none; margin: 10px; padding: 10px; right: 55.5%; position: absolute; >div.dashed < border-style: none dashed none none; margin: 10px; padding: 10px; right: 66%; position: absolute; >div.solid < border-style: none solid none none; margin: 10px; padding: 10px; right: 77%; position: absolute; >div.double 

Vertical Line using HTML and CSS

dotted vartical line.
dashed vartical line.
solid vartical line.
double vartical line.

8) Create Vertical Lines using Paragraph, Section and Article Containers

        body < text-align: center; >.paragraphWithVertcalLine < border-right: 1px solid #000; width: 300px; height: 300px; >.sectionWithVertcalLine < border-right: 1px solid #000; width: 300px; height: 300px; >.articleWithVertcalLine  

vertical line with paragraph container

vertical line with paragraph section container
vertical line with article container

Источник

Как сделать вертикальную линию HTML?

Как сделать вертикальную линию HTML?

В продолжение темы оформления контента на станицах сайта сегодня я хочу вам показать, как можно добавить вертикальную линию HTML, и тем самым выделить фрагмент текста, сделав его более заметным для посетителей.

В одной из своих прошлых статей я уже вам показывала, как можно украсить текст вертикальной линией. С этой статьей вы можете ознакомиться по этой ссылке: Горизонтальная линия HTML

Для того, что бы сделать вертикальную линию HTML есть несколько способов, но в зависимости от браузера у вас могут возникнуть проблемы с ее отображением на странице. Поэтому я покажу вам два наиболее простых способа добавления вертикальной линии HTML, которые будут у вас на 100% работать.

Вертикальная линия HTML

В первом случае нам нужно обернуть предназначенный для выделения фрагмент текста или элемент на странице в тег , или же использовать уже существующий блок, и для этого блока задать границу с нужной стороны.

Можно дописать стили в самом теге:

Вертикальная линия HTML

С помощью свойства border-left мы задаем границу блока с левой стороны, и задаем следующие параметры границы:

  • 3px – толщина линии
  • solid – сплошная линия.Так же можно сделать: пунктирную(dotted), прерывистую (dashed), double (двойную), вогнутую (groove), и выпуклую (ridge).
  • red – это цвет границы. Его вы можете задать названием цвета, в шестнадцатеричном формате, с помощью таблицы цветов RGB или RGBA.

Подробнее о способах задания цвета и кодовых значениях цветов вы можете почитать в этих статьях:
«Изменение цвета шрифта в CSS. Коды цветов HTML и CSS»
«Как определить цвет на сайте»

Для задания границы вы можете использовать следующие свойства:

  • border-left – граница слева
  • border-right— граница справа
  • border-top – сверху
  • border-bottom – снизу
  • border – граница по всему контуру блока

Свойства border-top и border-bottom можно так же использовать для задания горизонтальной линии

Так же нам нужно указать отступ текста от границы с помощью свойства padding-left, иначе он будет к ней прилипать. В моем случае отступ равен 10 пикселям.

Если вам удобнее работать с CSS стилями в отдельном файле, то для блока нужно присвоить класс и для этого класса прописать данные свойства в CSS -файле. Вот как это будет выглядеть:

Вертикальная линия HTML для текста в блоке

Редактировать стили для сайта проще всего при помощи редактора кода NotePad++. Как с ним работать я показывала в этой статье:
Редактирование файлов сайта в Notepad++

Вертикальная линия HTML с помощью псевдоэлемента

Если вам удобнее работать с CSS -стилями, то вы можете воспользоваться еще одним способом добавления вертикальных линий. Данный вариант немного сложнее и заключается в использовании псевдоэлементов :before и :after. Но у псевдоэлементов есть один очень ощутимый плюс, они позволяют без добавления HTML-кода, разместить на станице, соответственно, перед блоком или после него дополнительный элемент.

Тема псевдоэлементов достаточно обширна, поэтому подробно вдаваться их описание я сейчас не буду. В ближайшее время постараюсь подготовить статью с более подробной информацией по наиболее полезным псевдоэлементам, их возможностям и применению.

Итак, если нам нужно разместить вертикальную или горизонтальную линию сверху или слевой стороны элемента, то нам нужно использовать псевдоэлемент :before. Если же линия должна быть справа или снизу, то мы должны использовать псевдоэлемент :after.

Вот как это будет выглядеть:

Источник

How to create a vertical line using HTML and CSS

Posted on Aug 12, 2021

To create a vertical line using HTML and CSS, you can set a CSS rule for


tags with the class vertical as follows:

First, you need to normalize the default border and margin properties added by the browser.

Next, the width, style, and color of the vertical line is set using the shorthand border-left property, while the height property will set the height of the vertical line.

The float:left property is added so that the vertical line can be displayed on the left side of another element.

The following HTML markup:

Will produce the following output:

HTML vertical line of the left side

Alternatively, you can also remove the


tag and create a vertical line by adding a border-left or border-right property to any element that you want to have a vertical line.

For example, here’s how to add a vertical line on the right side of the

tag:

Will produce the following output:

HTML vertical line of the right side

You will need to adjust the CSS style depending on the context and where you want to place the vertical line. But a vertical line can always be created using the


tag.

If you need to add the vertical line on the side of another element, you can use either the border-left or border-right property with the attached element.

Learn JavaScript for Beginners 🔥

Get the JS Basics Handbook, understand how JavaScript works and be a confident software developer.

A practical and fun way to learn JavaScript and build an application using Node.js.

About

Hello! This website is dedicated to help you learn tech and data science skills with its step-by-step, beginner-friendly tutorials.
Learn statistics, JavaScript and other programming languages using clear examples written for people.

Type the keyword below and hit enter

Tags

Click to see all tutorials tagged with:

Источник

3 Ways To Create Vertical Lines In HTML CSS

Welcome to a tutorial on how to create vertical lines in HTML and CSS. Want to add a vertical line beside a paragraph or section of the page?

That covers the quick basics, but read on for more examples!

ⓘ I have included a zip file with all the source code at the start of this tutorial, so you don’t have to copy-paste everything… Or if you just want to dive straight in.

QUICK SLIDES

Vertical Lines With HTML CSS

TABLE OF CONTENTS

DOWNLOAD & NOTES

Firstly, here is the download link to the example code as promised.

QUICK NOTES

If you spot a bug, feel free to comment below. I try to answer short questions too, but it is one person versus the entire world… If you need answers urgently, please check out my list of websites to get help with programming .

EXAMPLE CODE DOWNLOAD

Click here to download all the example source code, I have released it under the MIT license, so feel free to build on top of it or use it in your own project.

HTML CSS VERTICAL LINES

All right, let us now get into the examples of creating vertical lines in HTML and CSS.

1) VERTICAL LINE WITH CSS BORDER

1A) THE RESULT

1B) HTML & CSS

/* (A) LEFT BORDER */ .border-l < /* (A1) VERTICAL LINE ON LEFT */ /* BORDER : THICKNESS STYLE COLOR */ border-left: 5px solid red; /* (A2) COSMETICS */ padding: 20px; background: #ffeded; >/* (B) RIGHT BORDER */ .border-r < /* (B1) VERTICAL LINE ON RIGHT */ /* SOLID | DOTTED | INSET | DASHED | DOUBLE */ border-right: 5px dashed blue; /* (B2) COSMETICS */ padding: 20px; background: #f0edff; >

As in the introduction, the easiest way to create a vertical line is to add border-left or border-right . But take note of how we can control the lines – border: THICKNESS STYLE COLOR . If you are new to HTML/CSS, just take a moment to walk through all the measuring units and color systems. That will lessen your pains, links below.

Источник

How to Draw Vertical Line in HTML?

Javascript Course - Mastering the Fundamentals

While building a web page or separating column-style content, you will run across HTML vertical lines.

In this article, we will learn how to quickly design the vertical line in the HTML web page using the external CSS and the tag transform property with the help of examples.

Pre-requisites

Should have familiarity with HTML


tag. Also, familiar with the height , width , and border properties of CSS .

What are we Creating?

In this article, we are going to create a vertical line in HTML using the CSS Border property, transform-property and making use of the height and width CSS properties.

creating a vertical line in HTML

How to Draw a Vertical Line in HTML?

You may have several reasons for including a vertical line on your web page. However, HTML does not provide a vertical line element. It only has one element for a horizontal line, i.e., . There are several ways to construct a vertical line in HTML, as mentioned below-

  • Using the CSS Border Property.
  • Making use of width and height CSS Property.
  • Using the

    Transform Property.

Example: 1- In this example, we will create a vertical line using the border-left , height , and position properties.

How to draw a vertical line in html

Example: 2- In this example, we will create a vertical line using the border-left and height properties.

creating a vertical line using border-left

Example: 3- In this example, we will center the vertical line in our HTML page.

alligning center the vertical line

Example: 4- In this example, we will center the vertical line in our HTML page using the


tag.

vertical line in our HTML using hr tag

Conclusion

  • The

    tag in HTML is used to produce a horizontal line. However, there is no tag for creating a vertical line. The border-left CSS attribute can be used to simulate a vertical line.

  • The border-left property of CSS is used to style the left-side border. The property refers to border-left width, border-left style, and border-left color.

Источник

Оцените статью