div {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
div::-webkit-scrollbar {
  display: none;
}

위코드는 예를든건데 위와같이 선택자는 원하는것으로 해서 지정해주면 됩니다! 

 

 

사용자로부터 입력을 받을 수 있는 입력폼을 정의할때 사용하는 태그입니다.

<form> 태그는 다음과 같은 요소들을 하나 이상 포함할 수 있습니다.

- <button>

- <fieldset>

- <input>

- <label>

- <option>

- <optgroup>

- <select>

- <textarea>

 

ex)

<form action="">
    이름 : <input type="text" name="st_name"><br>
    학번 : <input type="text" name="st_id"><br>
    학과 : <input type="text" name="department"><br>
    <input type="submit">
</form>

 

참고> 

http://www.tcpschool.com/html-tags/form

 

코딩교육 티씨피스쿨

4차산업혁명, 코딩교육, 소프트웨어교육, 코딩기초, SW코딩, 기초코딩부터 자바 파이썬 등

tcpschool.com

 

<span> 요소는 <div> 요소와 매우 비슷하게 사용되지만,

<div> 요소는 블록 타입의 요소인데 반해 <span> 요소는 인라인 타입의 요소라고 합니다.

 

cf)

블록 타입의 요소: 한행다차지 

인라인 타입의 요소 : 글씨크기만큼차지

 

참고> 

 

http://www.tcpschool.com/html-tags/span#:~:text=HTML%20%ED%83%9C%EA%B7%B8&text=%ED%83%9C%EA%B7%B8%EB%8A%94%20HTML%20%EB%AC%B8%EC%84%9C,%ED%95%98%EB%82%98%EB%A1%9C%20%EB%AC%B6%EC%9D%84%20%EB%95%8C%20%EC%82%AC%EC%9A%A9%ED%95%A9%EB%8B%88%EB%8B%A4.

 

코딩교육 티씨피스쿨

4차산업혁명, 코딩교육, 소프트웨어교육, 코딩기초, SW코딩, 기초코딩부터 자바 파이썬 등

tcpschool.com

https://sdsupport.cafe24.com/reference/html/block-inline.html

 

스마트디자인 서포트

 

sdsupport.cafe24.com

 

+ Recent posts