CSS에서 #과 .의 차이

Posted by Breeze24
2016. 6. 4. 23:46 Web
CSS에서 #과 .의 차이


#div{...}     -> ID

.div  {...}  -> 클래스



ID : 한번만 오는 오브젝트에 적용

ex) <table border="0" cellspacing="1" cellpadding="0" id="detail" bgcolor="#dddddd">


CLASS : 여러번 오는 오브젝트에 적용

.

'Web' 카테고리의 다른 글

검색엔진 노출 시키기  (1) 2016.06.05
DIV와 SPAN으로 테이블 대체  (0) 2016.06.04
res://ieframe.dll/preview.js  (0) 2016.06.04
Explorer8 이미지 밀림 현상  (0) 2016.06.04
자바스크립트 음성 인식 모듈 사용하기  (0) 2016.06.04

제우스 Container1,2에서 하나의 Application 실행하기.

Posted by Breeze24
2016. 6. 4. 23:46 Unix/WAS


제우스 Container2개에서 하나의 Application 실행하기. 



    <application> 

        <name>test</name>

        <path>/home/jeus6/webhome/test</path>

        <deployment-type>COMPONENT</deployment-type>

        <web-component>

            <context-root>/</context-root>

        </web-component>

        <deployment-target>

            <target>

                <engine-container-name>node_container1</engine-container-name>

                <web-context-group>

                    <name>MyGroup</name>

                </web-context-group>

            </target>

            <target>

                <engine-container-name>node_container2</engine-container-name>

                <web-context-group>

                    <name>MyGroup</name>

                </web-context-group>

            </target>

        </deployment-target>

    </application>


JEUSMain.xml에 위와 같이 Application안에 두개의 Container를 target으로 지정한다.  

.

이메일 테스트 방법

Posted by Breeze24
2016. 6. 4. 23:45 ETC


이메일 테스트 방법


내부 이메일 서버가 아닌 외부 이메일 서버에서 이메일을 테스트 할 수 있는 방법  

내부 메일 서버의 도메인에 대한 스팸차단인지는 확인 못하지만, 받는쪽 메일서버가 문제있는지는 확인이 가능. 

.



1) UltraTools


https://www.ultratools.com/tools/emailTestResult



2) MailTester.com


http://mailtester.com/testmail.php

 

.