-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS1065BScheduleK1Style.xsl
44 lines (42 loc) · 1.4 KB
/
IRS1065BScheduleK1Style.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- CSS Styles for form 1065BSchK1 -->
<xsl:template name="IRS1065BScheduleK1Style">
.styIRS1065BSchK1leftBox{ /* Box for left side of form */
border-style: solid;
border-color: black;
border-top-width: 0px;
border-bottom-width: 0px;
border-left-width: 1px;
border-right-width: 0px;
float:left;
clear: none; }
.styIRS1065BSchK1leftBoxWithBottom{ /* Box for left side of form with a bottome line*/
border-style: solid;
border-color: black;
border-top-width: 0px;
border-bottom-width: 1px;
border-left-width: 1px;
border-right-width: 0px;
float:left;
clear: none; }
.styIRS1065BSchK1rightBox{ /* Box for right side of form */
border-style: solid;
border-color: black;
border-top-width: 0px;
border-bottom-width: 0px;
border-left-width: 1px;
border-right-width: 1px;
float:right;
clear: none; }
.styIRS1065BSchK1rightBoxWithBottom{ /* Box for right side of form with bottome line*/
border-style: solid;
border-color: black;
border-top-width: 0px;
border-bottom-width: 1px;
border-left-width: 1px;
border-right-width: 1px;
float:left;
clear: none; }
</xsl:template>
</xsl:stylesheet>