The fraction part should not be converted as a number itself, but as a fraction. Converting 36 to binary isn't the same as converting 0.36 to binary.
Converting the fraction to binary works the same, but instead of using 1, 2, 4, 8 et.c., you are using 1/2, 1/4, 1/8 et.c.
To represent 0.36:
0 times 1/2 (0.5)
1 times 1/4 (0.25), leaves 0.11
0 times 1/8 (0.125)
1 times 1/16 (0.0625), leaves 0.0475
1 times 1/32 (0.03125), leaves 0.01625
1 times 1/64 (0.015625), leaves 0.000625
That takes you below 0.01, so the complete bianry representation of a number close enough to 21.36 is:
10101.010111
The exact value of that number in decimal is 21.359375.