안녕하세요 container 의 a속성을 수정하는 부분질문이있습니다!
156
작성한 질문수 1
강의 내용중에 list 파일중에
.container a {
width: 45%
max-width: 250px;
}
를 넣어도 a 태그가 적용이 안되는거 같은데...
( img size의 max-width가 안먹히는거 같아요!)
이런경우는 어느 부분을 확인해야할까요? ㅠㅠ
(img 의 width를 수정하면 줄어들긴합니다..)
아래는 전체 소스입니다...
<style>
.container {
padding: 0;
margin: 0, auto;
}
.container a {
width: 45%
max-width: 250px;
}
.container div {
display: flex;
justify-content: center;
align-items: center;
border-radius: 1rem;
}
.container img {
width:100%;
border-radius:1rem;
}
</style>
{% if article_list %}
<div class="container">
{% for article in article_list %}
<a href="{% url 'articleapp:detail' pk=article.pk %}">
{% include 'snippets/card.html' with article=article %}
</a>
{% endfor %}
</div>
<script src="{% static 'js/magicgrid.js' %}"> </script>
{% else %}
답변 0
강의에 나왔던 js 파일이 깃허브에 없습니다
1
79
1
모바일 디버깅, 반응형 레이아웃 4분48초 질문
0
58
1
decorator 관련질문입니다.
0
65
1
PasswordChangeView
0
104
2
로그아웃뷰 작동 관련 (2025년 3월)
1
138
1
실행에러질문
0
162
1
@login_required 데코레이터 사용시 리다이렉트는 어디서 참조하여 설정을 하는걸까요?
0
117
1
CacheBackend 관련 에러
0
183
1
21강 CreateView를 통한 회원가입 구현 질문
0
326
1
53강 disallowedhost
0
348
2
502 Bad Gateway
0
475
0
mariadb 접근권한 오류
0
549
1
logout 후 빈 화면으로 이동합니다 ㅠㅠ
0
464
2
로그아웃 후 빈 화면으로 이동
0
336
1
서버 운영 관련 질문 드립니다.(Unable to retirve...)
0
234
1
static/base.css파일을 인식을 못합니다
0
386
1
안녕하세요 19강 디버깅 설정 질문있습니다.
0
295
1
프로필 update편 질문있습니다.
0
382
1
수업질문
0
396
1
COOP error
0
531
1
61강 Dockerfile error
0
599
1
static안에 base.css 에서 정의한 클래스가 적용되지 않습니다.
0
493
1
static 파일 중 jpg 파일만 로드 불가
0
423
1
58강 static 파일 적용 안됨
0
552
1





