html5, CSS
-
LocalDate 에서 LocalDateTime으로 변환html5, CSS 2018. 6. 9. 05:49
import java.time.LocalDate; import java.time.LocalDateTime; public class Example { public static void main(String[] args) { LocalDate date = LocalDate.parse("2017-06-22"); System.out.println("LocalDate is: "+date); /* Converting the LocalDate to LocalDateTime using * atStartOfDay() method. This method adds midnight * time (start of the day time) with the local date. */ LocalDateTime localDateTim..
-
-
CSS <table> <td> wraphtml5, CSS 2018. 6. 8. 21:12
CSS style에서는 Table Size를 고정하기 위해 NoWrap을 사용하지만 부분적으로 Wrap 필요한 경우에 사용하는 것이 CSS white-space Property❮ PreviousComplete CSS ReferenceNext ❯ ExampleDemonstrate different values of the white-space property:p.a { white-space: nowrap; } p.b { white-space: normal; } p.c { white-space: pre; }Try it Yourself » CSS Syntaxwhite-space: normal|nowrap|pre|pre-line|pre-wrap|initial|inherit;Property ValuesValueD..