Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ko] svg element line 신규 번역 #25219

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 66 additions & 0 deletions files/ko/web/svg/element/line/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
---
title: <line>
slug: Web/SVG/Element/line
page-type: svg-element
givvemee marked this conversation as resolved.
Show resolved Hide resolved
l10n:
sourceCommit: da99ca19ae62059f81dbee3f7b4919de784f3510
---

{{SVGRef}}

**`<line>`** [SVG](/ko/docs/Web/SVG) 요소는 두 개의 점을 연결하는 선을 생성하는 기본적인 SVG 모양입니다.

## 예제

```css hidden
html,
body,
svg {
height: 100%;
}
```

```html
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<line x1="0" y1="80" x2="100" y2="20" stroke="black" />

<!-- 색상을 지정하지 않으면
선이 보이지 않습니다. -->
</svg>
```

{{EmbedLiveSample('Example', 100, 100)}}

## 특성

- {{SVGAttr('x1')}}
- : 선의 시작 지점의 x축 좌표를 설정합니다.
_값의 타입_: [**\<length>**](/ko/docs/Web/SVG/Content_type#length)|[**\<percentage>**](/ko/docs/Web/SVG/Content_type#percentage)|[**\<number>**](/ko/docs/Web/SVG/Content_type#number) ; _기본 값_: `0`; _애니메이션 설정 여부_: **yes**
- {{SVGAttr('x2')}}
- : 선의 마지막 지점의 x축 좌표를 설정합니다.
_값의 타입_: [**\<length>**](/ko/docs/Web/SVG/Content_type#length)|[**\<percentage>**](/ko/docs/Web/SVG/Content_type#percentage)|[**\<number>**](/ko/docs/Web/SVG/Content_type#number) ; _기본 값_: `0`; _애니메이션 설정 여부_: **yes**
- {{SVGAttr('y1')}}
- : 선의 시작 지점의 y축 좌표를 설정합니다.
_값의 타입_: [**\<length>**](/ko/docs/Web/SVG/Content_type#length)|[**\<percentage>**](/ko/docs/Web/SVG/Content_type#percentage)|[**\<number>**](/ko/docs/Web/SVG/Content_type#number) ; _기본 값_: `0`; _애니메이션 설정 여부_: **yes**
- {{SVGAttr('y2')}}
- : 선의 마지막 지점의 y축 좌표를 설정합니다.
_값의 타입_: [**\<length>**](/ko/docs/Web/SVG/Content_type#length)|[**\<percentage>**](/ko/docs/Web/SVG/Content_type#percentage)|[**\<number>**](/ko/docs/Web/SVG/Content_type#number) ; _기본 값_: `0`; _애니메이션 설정 여부_: **yes**
- {{SVGAttr("pathLength")}}
- : 사용자 단위의 전체 선 길이를 설정합니다.
_값의 타입_: [**\<number>**](/ko/docs/Web/SVG/Content_type#number) ; _기본 값_: _none_; _애니메이션 설정 여부_: **yes**

## 사용 일람

{{svginfo}}

## 명세서

{{Specifications}}

## 브라우저 호환성

{{Compat}}

## 같이 보기

- 다른 기본 SVG 모양: {{ SVGElement('circle') }}, {{ SVGElement('ellipse') }}, {{ SVGElement('polygon') }}, **{{ SVGElement('polyline') }}**, {{ SVGElement('rect') }}
Loading