COMING SOON 🚀

T

드림위버 짜증 ㅠ.ㅠ...

디자이너의 작업 툴은 드림위버

저의 작업툴은 에디터 플러스

 

에디터 플러스 탭간 = 스페이스*4

 

결과물 받고 작업 하려면.... 들여쓰기 전혀 안맞고 요소 끝에 필요없는 공백이 즐비 하고 ㅠ.ㅠ

 

결과물에 맞게 다시 손코딩으로 맞추는데 짜증나네요 ㅋㅋㅋㅋ

이거 해결방법 없겠죠?

 

 

 

 

ps. 젠코딩이 없었다면 포기 하고 그냥 썼을것갔네요.

 

 

 

젠코딩

[code]

table[class="tb01 t02"]>(colgroup>col[width]*7)+(thead>tr>th[scope=col]*7)+tbody>tr>td*7

[/code]

 

변환후

[code]

<table class="tb01 t02">

<colgroup>

<col width="">

<col width="">

<col width="">

<col width="">

<col width="">

<col width="">

<col width="">

</colgroup>

<thead>

<tr>

<th scope="col"></th>

<th scope="col"></th>

<th scope="col"></th>

<th scope="col"></th>

<th scope="col"></th>

<th scope="col"></th>

<th scope="col"></th>

</tr>

</thead>

<tbody>

<tr>

<td></td>

<td></td>

<td></td>

<td></td>

<td></td>

<td></td>

<td></td>

</tr>

</tbody>

</table> 

[/code] 

|

댓글 10개

내 입맛이 맞도록 손코딩 고고싱-ㅅ -;;; ㅋㅋㅋ
별다른 수가 없나보군요 ㅎㅎ
before
[code]
<div class="ADemo">
<!--검색창 { -->
<div class="adds">
<span class="title">이모티콘검색</span>
<select>
<option value="name">제목</option>
<option value="phone">내용</option>
</select>
<input type="text" name="stx" class="txt w50 dgr">
<span class="cbtn"><input type="submit" class="btn23" style="width:40px" value="검색"></span>
<a class="btn btn23" href="#">전체목록</a> <b class="ml10">총 28건</b>
</div>
<!-- } 검색창 -->
<!--이모티콘 메뉴 { -->
<div class="SendImo box">
<ul>
<li>
<a href="#" class="on col">전체</a>
</li>
<li>
<a href="#">사랑/고백</a>
</li>
<li>
<a href="#" class="on">만남/연락</a>
</li>
<li>
<a href="#">새해인사</a>
</li>
<li>
<a href="#">사과/격려</a>
</li>
<li>
<a href="#">유머/CF</a>
</li>
<li>
<a href="#">축하/기념</a>
</li>
<li>
<a href="#">생일/꽃말</a>
</li>
<li>
<a href="#">감동의 시</a>
</li>
<li>
<a href="#">은행/카드</a>
</li>
<li>
<a href="#">유머/엽기</a>
</li>
<li>
<a href="#">종교/병원</a>
</li>
<li>
<a href="#">계절/날씨</a>
</li>
<li>
<a href="#">기타</a>
</li>
</ul>
</div>
<!-- } 이모티콘메뉴-->
<!--이모티콘 그룹이동 { -->
<dl class="imomove">
<dt>
선택한 이모티콘을
<select>
<option value="">그룹명</option>
<option value="">그룹명</option>
</select>
으로
<span class="btn"><input type="submit" name="submit" class="btn23" value="이동"></span>
</dt>
<dd>
<a href="#" class="btn btn23" onclick="$('#newgroup').toggle();">
그룹관리
</a>
<a href="#" class="cbtn btn23" onclick="$('#newimo').toggle();">
<img src="/comn/img/ic/pen.png" class="mr5">이모티콘등록
</a>
</dd>
</dl>
<!-- } 이모티콘 그룹이동 -->
<!--이모티콘리스트 { -->
<div class="list mb20"></div>
</div>
[/code]

-----------------------------------------------------

after
[code]
<!-- .ADemo -->
<div class="ADemo">
<!-- .adds -->
<div class="adds">
<form action="<?php echo APP_URL; ?>/emoticon" method="GET">
<span class="title">이모티콘검색</span>
<select name="sfl">
<option value="title"<?php echo ($sfl == 'title')?' selected':''; ?>>제목</option>
<option value="content"<?php echo ($sfl == 'content')?' selected':''; ?>>내용</option>
</select>
<input type="text" name="stx" class="txt w50 dgr" value="<?php echo $_REQUEST['stx']; ?>">
<span class="cbtn"><input type="submit" class="btn23" style="width:40px" value="검색"></span>
<a class="btn btn23" href="#">전체목록</a> <b class="ml10">총 <?php echo number_format($PageCount['count']); ?>건</b>
</form>
</div>
<!-- .adds -->

<!-- [class="SendImo box"] { -->
<div class="SendImo box">
<ul>
<li><a href="<?php echo APP_URL; ?>/emoticon" class="<?php echo (!trim($group) || $group == '')?'on ':''; ?>col">전체</a></li>
<?php for($i=0; $i<count($group_list); $i++) { ?>
<li><a href="<?php echo APP_URL; ?>/emoticon?group=<?php echo $group_list[$i]['group']; ?>"<?php echo ($group == $group_list[$i]['group'])?' class="on"':''; ?>><?php echo $group_list[$i]['group']; ?></a></li>
<?php } ?>
</ul>
</div>
<!-- } [class="SendImo box"] -->

<form action="">
<!-- .imomove { -->
<div class="imomove">
<dt>
선택한 이모티콘을
<select name="gorup">
<option value="기본">기본</option>
<?php for($i=0; $i<count($group_list); $i++) { ?>
<option value="<?php echo $group_list[$i]['group']; ?>"><?php echo $group_list[$i]['group']; ?></option>
<?php } ?>
</select>
으로
<span class="btn"><input type="submit" name="submit" class="btn23" value="이동"></span>
</dt>
<dd>
<a href="#" class="btn btn23" onclick="$('#newgroup').toggle();">그룹관리</a>
<a href="#" class="cbtn btn23" onclick="$('#newimo').toggle();">
<img src="<?php echo G5_URL; ?>/comn/img/ic/pen.png" class="mr5">이모티콘등록
</a>
</dd>
</div>
<!-- } .imomove -->

<!-- [class="list mb20"] -->
<div class="list mb20"></div>
<!-- [class="list mb20"] -->
</form>
</div>
<!-- .ADemo -->
[/code]
요즘 디자이너도 드림위버 안써요 ㅋ
부럽습니다 ㅎㅎㅎ
요즘 대세가 뭐죠?
phpstorm 아닐까요?
htmlarg 라는 확장을 이용하면 됩니다.
http://egloos.zum.com/kwaknu/v/5455401
오호
예전에 비슷한거 쓰다가 가끔 소스 날아가는 경우나 에지터 플러스가 뻗는 경우가 있더라구요.
이건 기대해볼만 할것 같네요.
감사합니다
눠의 스킬향상(?)을 위해서 하드코딩을 시켜줄궤... 라고 하심됩니다. -_-;;
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
11년 전 조회 2,421
11년 전 조회 2,284
11년 전 조회 2,230
11년 전 조회 2,203
11년 전 조회 1,859
11년 전 조회 3,066
11년 전 조회 1,788
11년 전 조회 2,209
11년 전 조회 2,286
11년 전 조회 2,356
11년 전 조회 3,374
11년 전 조회 2,082
11년 전 조회 2,566
11년 전 조회 1,952
11년 전 조회 1,952
11년 전 조회 2,839
11년 전 조회 2,229
11년 전 조회 2,060
11년 전 조회 2,439
11년 전 조회 1,750
11년 전 조회 2,213
11년 전 조회 2,334
11년 전 조회 5,410
11년 전 조회 2,107
11년 전 조회 1,784
11년 전 조회 4,335
11년 전 조회 2,306
11년 전 조회 2,081
11년 전 조회 1,660
11년 전 조회 1,679
11년 전 조회 2,538
11년 전 조회 4,946
11년 전 조회 3,064
11년 전 조회 1,931
11년 전 조회 1,493
11년 전 조회 2,410
11년 전 조회 2,432
11년 전 조회 4,320
11년 전 조회 2,117
11년 전 조회 3,889
11년 전 조회 3,055
11년 전 조회 1,768
11년 전 조회 2,059
11년 전 조회 3,575
11년 전 조회 2,164
11년 전 조회 2,374
11년 전 조회 3,253
11년 전 조회 3,056
11년 전 조회 1,808
11년 전 조회 1,988
11년 전 조회 4,310
11년 전 조회 2,294
11년 전 조회 2,353
11년 전 조회 1,981
11년 전 조회 1,546
11년 전 조회 1,845
11년 전 조회 2,213
11년 전 조회 3,584
11년 전 조회 2,116
11년 전 조회 2,470
11년 전 조회 2,179
11년 전 조회 1,928
11년 전 조회 5,009
11년 전 조회 1,985
11년 전 조회 2,234
11년 전 조회 1,887
11년 전 조회 2,294
11년 전 조회 1,939
11년 전 조회 1,552
11년 전 조회 1,567
11년 전 조회 2,040
11년 전 조회 2,101
11년 전 조회 2,127
11년 전 조회 2,142
11년 전 조회 1,795
11년 전 조회 1,862
11년 전 조회 4,647
11년 전 조회 2,511
11년 전 조회 1,436
11년 전 조회 1,852
11년 전 조회 1,708
11년 전 조회 3,081
11년 전 조회 1,593
11년 전 조회 1,756
11년 전 조회 1,459
11년 전 조회 1,863
11년 전 조회 1,613
11년 전 조회 1,881
11년 전 조회 2,629
11년 전 조회 1,473
11년 전 조회 1,464
11년 전 조회 2,562
11년 전 조회 2,338
11년 전 조회 2,272
11년 전 조회 1,664
11년 전 조회 2,394
11년 전 조회 1,930
11년 전 조회 1,798
11년 전 조회 2,017
11년 전 조회 2,148