When enqueing a stylesheet, is it possible to remove the type attribute? [duplicate]

For modify this output you can use that filter:

function wpse51581_hide_type($src) {
    return str_replace("type="text/css"", '', $src);
}
add_filter('style_loader_tag', 'wpse51581_hide_type');

You can see this hook into wp-includes/class.wp-styles.php