묻고답하기
최근게시물 출력에 대해 질문 있어요.
2011.05.12 18:16
최근 게시물 출력 위젯을
----------------------------------
오늘의 날씨는요 05-14
아주 좋은 날임 04-15
------------------------------------
이렇게 날자가 오른쪽에 고정되게 하고싶은데.
-------------------------------------
오늘의 날씨는요 05-14
아주 좋은 날임 04-15
-------------------------------------
그리고
오늘의 날씨는요 05-14
아주 좋은 날임 04-15
이 글과 글의 간격의 height: 를 조금 조정하고 싶은데 딱 붙어 보여서 이쁘지가 않아요.
line-height { line-height: 200% ; }는 안먹네요,. 방법을 알려주세요 ㅠ
.
--
<!--// 설정된 컬러셋의 종류에 따라서 css파일을 import 합니다 -->
<!--@if($colorset=="black")-->
<!--%import("css/black.css")-->
<!--@else-->
<!--%import("css/white.css")-->
<!--@end-->
<style type="text/css"><!---
body { font-family:돋움; font-size:8pt; text-decoration:none;}
a:link { font-family:돋움; font-size:8pt; color:#666666; text-decoration: none;}
a:visited { font-family:돋움; font-size:8pt; color:#666666; text-decoration: none;}
A:hover { text-decoration: none; color:#00B60A;}
td { font-family:돋움; font-size:9pt; text-decoration:none; color:black; }
line-height { line-height: 200% ; }
-->
</style>
<body bgcolor= leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<div class="latest_{$colorset}">
<ul>
<document_list">!--@foreach($widget_info->document_list as $oDocument)-->
<li>
<span class="title">
<a href="{$oDocument->getPermanentUrl()}#{$oDocument->getCommentCount()}">{$oDocument->getTitle($widget_info->subject_cut_size)}</a>
<getCommentCount">!--@if($oDocument->getCommentCount())-->
<span class="comment">[<a href="{$oDocument->getPermanentUrl()}#comment">{$oDocument->getCommentCount()}</a>]</span>
<!--@end-->
{$oDocument->printExtraImages($widget_info->duration_new)}
</span>
<display_regdate">!--@if($widget_info->display_regdate == 'Y')-->
<span class="date">{$oDocument->getRegdate("y-m-d")}</span>
<!--@end--> </li>
<!--@end-->
</ul>
</div>
</body>
댓글 2
-
송동우
2011.05.12 18:29
-
알고싶어용
2011.05.12 19:27
감사합니다. float:right로 해결완료하였구요. 이제 문제는 글자간 위 아래 간격입니다. line-height가 아닌가요? 음.. 디자인만 하던 사람이라. -
알고싶어용
2011.05.12 19:28
그러니까 게시물간 간격 입니다. -
송동우
2011.05.13 01:50
css의 사용법은
아이디(#), 클래스(.), html태그로 대상을 지정합니다.
line-height는 속성입니다.
예를 들어
<div id="line_height">
이렇게 사용을 했다면
css 에서
#line_height {line-height:값}
이런식으로 사용을 할 수 있겠죠
사용된 css에 line-height 는 아이디명도 아니고 클래스명도 아니고 태그명도 아니고 속성을 저렇게 하면 당연히 되지도 않을 뿐만 아니라 간격을 벌이고 싶으면 li에 margin값을 사용해 보세요
그리고 css 속에 body 속성값을 줬는데 실제 body 속에 html로 속성값을 또 줬네요
따로 사용할 필요없이 css에 맞춰 넣으면 관리하기도 편할겁니다.