css 수정.

cks
강석 최 2023-10-26 11:44:21 +09:00
parent b999c23753
commit 5eaa1286e9
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ blockquote, button, fieldset, iframe {border: 0;}
cite, em, u, address, i {font-style: normal;}
img {border: 0; vertical-align: top;}
hr, legend {position: absolute; left: -9999px; top: -9999px;}
caption {text-indent: -9999px; font-size: 0;}
/*caption {text-indent: -9999px; font-size: 0;}*/
li {list-style: none;}
table {width: 100%; table-layout: fixed; border-collapse: collapse;}
a:link, a:visited, a:hover, a:active {text-decoration: none;}

View File

@ -141,7 +141,7 @@ function CodeViewer(props) {
item.full_content = item.full_content.replace('<table ', '<table class="table table-bordered "')
}
if(item.error_cd !== null){
item.full_content += "<div class='errorText'>"+item.error_cd+"</div>";
item.full_content = "<div class='errorText'>"+item.error_cd+"</div>"+item.full_content;
}
detailTag.push(
<VwDiv depth={item.cont_level} isTitle={isTitle} id={item.cont_type_cd} dangerouslySetInnerHTML={ {__html: item.full_content} }></VwDiv>