커뮤니티
포인트
쿠폰
내 강의실
국비 신청 내역
증명서
계정
로그아웃
학습 질문
개발 일지
나의 활동
답변 완료
1-12강의, 이모티콘 붙여넣기
undefined주차
북마크
김*미
댓글
6
추천
0
조회수
16
조회수
16
답변 완료



🔥 <-- 이거요. 이모티콘 사이트에서는 색깔이 있는데, 붙여 넣으면 왜 까맣지요?

수업영상에서 쌤이 '영화기록하기' 옆에 붙여넣기 했을 땐 분명히 색깔이 그대로 나왔거든요

=> 코드를 다시 붙여넣었어요.. color white로 지정한 것을 지워보기도 했는데,, 글씨색만 변하는데, 어디가 잘못된걸까요?


전체를 캡처해 주시면, 튜터님들이 빠르게 상황을 이해할 수 있어요




 <style>
        * {
            font-family: 'Gowun Dodum', sans-serif;
        }
        .mytitle {
            background-color: green;

            height: 250px;
            width: 100%;

            background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://movie-phinf.pstatic.net/20210715_95/1626338192428gTnJl_JPEG/movie_image.jpg");
            background-position: center;
            background-size: cover;

            color: white;

            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

        }
            .mytitle > button {
                width: 200px;
                height: 50px;

                background-color: transparent;
                color: white;

                border-radius: 50px;

                border: 1px solid white;

                margin-top:10px;


            }
            .mytitle > button:hover {
                border: 2px solid white;
        }
            .mycomment {
                color: gray;
            }
            .wrap {
                width : 1200px;
                margin: 20px auto 0 auto
            }




    </style>
</head>

<body>
<div class="mytitle">
         <h1>내 생애 최고의 영화들</h1>
        <button>영화 기록하기🔥</button>
    </div>
    <div class="wrap">
        <div class="row row-cols-1 row-cols-md-4 g-4">
      <div class="col">
        <div class="card">
          <img src="https://movie-phinf.pstatic.net/20210728_221/1627440327667GyoYj_JPEG/movie_image.jpg" class="card-img-top" alt="...">
          <div class="card-body">
            <h5 class="card-title">여기에 제목이 들어갑니다.</h5>
            <p class="card-text">여기에 내용이 들어가지요.</p>
              <p>🔥🔥🔥</p>
              <p class="mycomment">여기에 코멘트가 들어갑니다.</p>
          </div>
        </div>
      </div>



취소
 공유
취소
댓글 0
댓글 알림
나의얼굴