하나의 버튼에 이미지와 텍스트를 같이 넣고 싶다면

한개의 버튼(button) 안에 이미지와 문자를 같이 넣고 싶다면 어떻게 할까요. 위의 그림과 같이 이미지와 텍스트가 같이 있는 HTML, CSS를 만들어 보자. <button> <div> <img src="https://picsum.photos/70/30"> <span> TEXT </span> </div> </button> div { display: flex; justify-content: space-around; align-items: center; } button { width :…

0 Comments